blob: f02a4362a8664c424c35adfd4dbe22d57c6c94fc [file] [log] [blame]
#include <wctype.h>
int iswlower(wint_t wc)
{
return towupper(wc) != wc;
}
int __iswlower_l(wint_t c, locale_t l)
{
return iswlower(c);
}
weak_alias(__iswlower_l, iswlower_l);