Retro68/gcc/newlib/libc/ctype/isblank_l.c
2017-10-07 02:16:47 +02:00

11 lines
177 B
C

#include <_ansi.h>
#include <ctype.h>
#undef isblank_l
int
isblank_l (int c, struct __locale_t *locale)
{
return (__locale_ctype_ptr_l (locale)[c+1] & _B) || (c == '\t');
}