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