ref: 2ba16ff549dccdaf9a6c915f3f9219410b9d5e3e dir: /libc/src/isascii.c/
/* See LICENSE file for copyright and license details. */ #define __USE_MACROS #include <ctype.h> #undef isascii int isascii(int c) { return c <= 0x7f; }