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