6 lines
85 B
C
6 lines
85 B
C
#include <ctype.h>
|
|
|
|
int isspace(int c)
|
|
{
|
|
return c == ' ' || (unsigned)c-'\t' < 5;
|
|
}
|