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