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