home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff218.lzh / EdLib / man / DecToInt < prev    next >
Text File  |  1989-06-04  |  708b  |  30 lines

  1. DECTOINT(3)                Library Functions               DECTOINT(3)
  2.  
  3.  
  4.  
  5. NAME
  6.      dectoint - give the decimal value of a string of decimal digits
  7.  
  8. SYNOPSIS
  9.      #include <edlib.h>
  10.  
  11.      int dectoint(number)
  12.      char *number;
  13.  
  14. DESCRIPTION
  15.      Dectoint takes a string that may have been read in with scanf(3)
  16.      or from the console, and treats it as if it were a decimal number.
  17.      The integer value of the decimal number is returned. Dectoint
  18.      stops at the first character that is not a decimal digit. If the
  19.      first character in the string is not a decimal digit, then a value
  20.      of 0 is returned.
  21.  
  22. AUTHOR
  23.      Edwin Hoogerbeets 01/08/88
  24.  
  25. SEE ALSO
  26.      bintoint(3), hextoint(3), toint(3)
  27.  
  28.  
  29.  
  30.