c754fb955b02336bd874c3f5f39cb74dc1e2aaca
[musl] / src / ctype / iswlower.c
1 #include <wctype.h>
2 #include "libc.h"
3
4 int iswlower(wint_t wc)
5 {
6         return towupper(wc) != wc || wc == 0xdf;
7 }
8
9 int __iswlower_l(wint_t c, locale_t l)
10 {
11         return iswlower(c);
12 }
13
14 weak_alias(__iswlower_l, iswlower_l);