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