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