Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / ctype / iswlower_l.c
blob644613325718fc966ba74d46b17f873d12f680d6
1 /* Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */
2 #include <_ansi.h>
3 #include <ctype.h>
4 #include <wctype.h>
5 #include "local.h"
6 #include "categories.h"
8 int
9 iswlower_l (wint_t c, struct __locale_t *locale)
11 #ifdef _MB_CAPABLE
12 c = _jp2uc_l (c, locale);
13 // The wide-character class "lower" contains at least those characters wc
14 // which are equal to towlower(wc) and different from towupper(wc).
15 enum category cat = category (c);
16 return cat == CAT_Ll || (cat == CAT_LC && towlower (c) == c);
17 #else
18 return c < 0x100 ? islower (c) : 0;
19 #endif /* _MB_CAPABLE */