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