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

  1. /*
  2. ** return 'true' if c is a hexadecimal digit
  3. ** (0-9, A-F, or a-f)
  4. */
  5. isxdigit(c) int c; {
  6.   return ((c<='f' && c>='a') ||
  7.           (c<='F' && c>='A') ||
  8.           (c<='9' && c>='0'));
  9.   }
  10.