toaruos/libc/ctype/isgraph.c

4 lines
58 B
C

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