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