Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / ctype / isblank_l.c
blob8bbb84e1f6a80333d814e6675d36545886e89143
1 #include <_ansi.h>
2 #include <ctype.h>
4 #undef isblank_l
6 int
7 isblank_l (int c, struct __locale_t *locale)
9 return (__locale_ctype_ptr_l (locale)[c+1] & _B) || (c == '\t');