home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / MSDOS / WATTCP / BOOTP.ZIP / ISDIGIT.C < prev    next >
Encoding:
Text File  |  1984-09-28  |  122 b   |  10 lines

  1. /*    return true if input character is a digit
  2. */
  3.  
  4. isdigit(c)
  5. unsigned char c;
  6. {
  7.  
  8.   return ('0'<=c && c<='9');
  9. }
  10.