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