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