ref: 51ee6bb33d83575c9da8e4bbaad11cd55b16400e 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; }