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