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