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