ref: c6075c2fb1e68d303490be87269a65db3608559b dir: /lib/c/isdigit.c/
#define __USE_MACROS #include <ctype.h> #undef isdigit int isdigit(int c) { return (__ctype+1)[c] & (_D); }