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