home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 216.lha / EdLib_v1.0 / isbdigit.c < prev    next >
C/C++ Source or Header  |  1996-02-15  |  247b  |  16 lines

  1. /* edlib  version 1.0 of 04/08/88 */
  2. /*
  3.     tests whether the given character could be a binary digit
  4. */
  5. #include <stdio.h>
  6.  
  7. int isbdigit(c)
  8. char c;
  9. {
  10.     if ( c == '1' || c == '0' ) {
  11.         return(1);
  12.     } else {
  13.         return(NULL);
  14.     }
  15. }
  16.