1#include <wctype.h>
2
3int iswlower(wint_t wc) {
4    return towupper(wc) != wc;
5}
6