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