gbdk-releases/gbdk-lib/libc/isspace.c
2015-01-10 16:25:09 +01:00

10 lines
124 B
C

#include <ctype.h>
BOOLEAN isspace(char c)
{
if(c == ' ' || c == '\t' || c == '\n')
return 1;
else
return 0;
}