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