summaryrefslogtreecommitdiff
path: root/src/ctype/iswlower.c
blob: 79df44a3d64e571440825293e8b7c18a51330bc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);