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