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