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

4 lines
74 B
C

int iscntrl(int c) {
return ((c >= 0 && c <= 0x1f) || (c == 0x7f));
}