blob: 0dbf8386318d0e69062a77c9c70a84d06250d8e1 [file] [log] [blame]
#include <wctype.h>
#include "libc.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);