blob: 74d47d32ac98885359e7f6ab26e4ad7a9dbc7c73 [file] [log] [blame]
#include <wctype.h>
int iswlower(wint_t wc) {
return towupper(wc) != wc;
}