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