apply hidden visibility to sigreturn code fragments
[musl.git] / src / ctype / iswlower.c
blob79df44a3d64e571440825293e8b7c18a51330bc4
1 #include <wctype.h>
2 #include "libc.h"
4 int iswlower(wint_t wc)
6 return towupper(wc) != wc;
9 int __iswlower_l(wint_t c, locale_t l)
11 return iswlower(c);
14 weak_alias(__iswlower_l, iswlower_l);