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