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