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