fxlibc/src/libc/ctype/isblank.c

8 lines
89 B
C

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