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