home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / S / SMC21LIB.LZH / ISDIGIT.C < prev    next >
Text File  |  2000-06-30  |  128b  |  13 lines

  1.  
  2. /*
  3. ** return "true" if c is a decimal digit
  4. */
  5. isdigit(c) int c; {
  6.   return (c<='9' && c>='0');
  7.   }
  8.  
  9.  
  10.  
  11.  
  12.  
  13.