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