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