aboutsummaryrefslogtreecommitdiff
path: root/src/ctype/iswlower.c
blob: dfa40b6234f7b9a5f0d03f5b79bde1cdfa282ab8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <wctype.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);


#ifdef TEST
int
main(void) {
	return 0;
}
#endif