home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bootp.zip / ISDIGIT.C < prev    next >
Text File  |  1984-09-28  |  122b  |  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.