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