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