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