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