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