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