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