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