ref: 7e3c35928ca0acac963e16b7d0194a8896d0989c dir: /src/libc/ctype/isalnum.c/
#include <ctype.h> #undef isalnum int isalnum(int c) { return (__ctype+1)[c] & (_U|_L|_D); }