mirror of
git://git.musl-libc.org/musl
synced 2025-01-16 03:41:14 +00:00
7 lines
83 B
C
7 lines
83 B
C
#include <wctype.h>
|
|
|
|
int iswlower_l(wint_t c, locale_t l)
|
|
{
|
|
return iswlower(c);
|
|
}
|