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