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