home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 223_01 / isdigit.c < prev    next >
Text File  |  1979-12-31  |  256b  |  7 lines

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