home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / edlib.lzh / EDLIB / MAN / ISBDIGIT < prev    next >
Encoding:
Text File  |  1991-08-16  |  447 b   |  26 lines

  1. ISBDIGIT(3)                Library Functions               ISBDIGIT(3)
  2.  
  3.  
  4.  
  5. NAME
  6.      isbdigit - tell whether given character is a binary digit
  7.  
  8. SYNOPSIS
  9.      #include <edlib.h>
  10.  
  11.      int isbdigit(c)
  12.      char c;
  13.  
  14. DESCRIPTION
  15.      Isbdigit returns a 1 if the given characters is either a '1'
  16.      or a '0'. Isbdigit returns a 0 for all other characters.
  17.  
  18. AUTHOR
  19.      Edwin Hoogerbeets 01/08/88
  20.  
  21. SEE ALSO
  22.      isdigit(3), isodigit(3), isxdigit(3)
  23.  
  24.  
  25.  
  26.