isxdigit.c (115B)
1 #define __USE_MACROS 2 #include <ctype.h> 3 #undef isxdigit 4 5 int 6 isxdigit(int c) 7 { 8 return (__ctype+1)[c] & (_D|_X); 9 }