gbdk-releases/gbdk-lib/libc/isspace.c

10 lines
124 B
C
Raw Permalink Normal View History

2015-01-10 16:25:06 +01:00
#include <ctype.h>
2015-01-10 16:25:09 +01:00
BOOLEAN isspace(char c)
2015-01-10 16:25:06 +01:00
{
if(c == ' ' || c == '\t' || c == '\n')
return 1;
else
return 0;
}