5 lines
No EOL
76 B
C
5 lines
No EOL
76 B
C
#include <ctype.h>
|
|
|
|
int isblank(int c) {
|
|
return (c == ' ' || c == '\t');
|
|
} |