home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / ISXDIGIT.C < prev    next >
Encoding:
Text File  |  1993-03-25  |  256 b   |  17 lines

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