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