fxlibc/src/libc/ctype/isspace.c

8 lines
100 B
C

#include <ctype.h>
#undef isspace
int isspace(int c)
{
return (c >= 9 && c <= 13) || (c == 32);
}