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