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