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