blob: e88892b70aec1199e98975635279be8b5068d036 [file] [log] [blame]
#include <wctype.h>
int iswupper(wint_t wc) {
return towlower(wc) != wc;
}