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