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