toaruos/libc/ctype/iscntrl.c

4 lines
74 B
C
Raw Normal View History

2018-05-04 06:17:32 +03:00
int iscntrl(int c) {
return ((c >= 0 && c <= 0x1f) || (c == 0x7f));
}