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