summaryrefslogtreecommitdiff
path: root/userland/libc/ctype/isascii.c
blob: 660c8bbd5614e97e14ce97b067ec892223f20074 (plain)
1
2
3
4
#include <ctype.h>

// https://pubs.opengroup.org/onlinepubs/9699919799/functions/isascii.html
int isascii(int c) { return (c < 128); }