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