4 lines
58 B
C
4 lines
58 B
C
|
int isgraph(int c) {
|
||
|
return (c >= '!' && c <= '~');
|
||
|
}
|