ref: a1e3abc209473dd524ec163eca35edfa7ac65b3a dir: /lib/c/isascii.c/
#include <ctype.h> #undef isascii int isascii(int c) { return c <= 0x7f; }