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