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