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