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