summaryrefslogblamecommitdiff
path: root/src/ctype/iswlower.c
blob: c754fb955b02336bd874c3f5f39cb74dc1e2aaca (plain) (tree)
1
2
3
4
5
6
7
                   
                 


                       
                                                
 






                                      
#include <wctype.h>
#include "libc.h"

int iswlower(wint_t wc)
{
	return towupper(wc) != wc || wc == 0xdf;
}

int __iswlower_l(wint_t c, locale_t l)
{
	return iswlower(c);
}

weak_alias(__iswlower_l, iswlower_l);