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