toaruos/libc/ctype/isascii.c

4 lines
44 B
C

int isascii(int c) {
return (c <= 0x7f);
}