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