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 / BinToInt < prev    next >
Text File  |  1989-06-04  |  702b  |  30 lines

  1. BINTOINT(3)                Library Functions               BINTOINT(3)
  2.  
  3.  
  4.  
  5. NAME
  6.      bintoint - give the binary value of a string of binary digits
  7.  
  8. SYNOPSIS
  9.      #include <edlib.h>
  10.  
  11.      int bintoint(number)
  12.      char *number;
  13.  
  14. DESCRIPTION
  15.      Bintoint 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 binary number.
  17.      The integer value of the binary number is returned. Bintoint
  18.      stops at the first character that is not a '1' or a '0'. If the
  19.      first character in the string is not a binary digit, then a value
  20.      of 0 is returned.
  21.  
  22. AUTHOR
  23.      Edwin Hoogerbeets 01/08/88
  24.  
  25. SEE ALSO
  26.      dectoint(3), hextoint(3), toint(3)
  27.  
  28.  
  29.  
  30.