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