reprocess libc/ldso RELA relocations in stage 3 of dynamic linking
[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;
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);