blob: dea58f3ae58ab7c4a275f962a1272744363673e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <libc.h>
#include <wctype.h>
int iswlower(wint_t wc)
{
return towupper(wc) != wc;
}
weak int islower_l(wint_t wc, locale_t unused locale)
{
return iswlower(wc);
}
|