4 lines
51 B
C
4 lines
51 B
C
static int isspace(int c) {
|
|
return (c == ' ');
|
|
}
|
static int isspace(int c) {
|
|
return (c == ' ');
|
|
}
|