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