home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / ISALNUM.C < prev    next >
Text File  |  1987-10-04  |  256b  |  9 lines

  1. /*
  2. ** return 'true' if c is alphanumeric
  3. */
  4. isalnum(c) int c; {
  5.   return ((c<='z' && c>='a') ||
  6.           (c<='Z' && c>='A') ||
  7.           (c<='9' && c>='0'));
  8.   }
  9.