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

4 lines
58 B
C

int isgraph(int c) {
return (c >= '!' && c <= '~');
}