toaruos/libc/ctype/isascii.c
2018-05-04 12:17:32 +09:00

4 lines
44 B
C

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