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