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