blob: 438fe26a5dac1de1a3a2c8fedd9f13c436928d26 [file] [log] [blame]
#include <wctype.h>
int iswlower(wint_t wc)
{
return towupper(wc) != wc || wc == 0xdf;
}