2023-11-16 23:19:36 -05:00

4 lines
51 B
C

static int isspace(int c) {
return (c == ' ');
}