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