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