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