mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 08:01:38 +00:00
7 lines
77 B
C
7 lines
77 B
C
|
#include <wctype.h>
|
||
|
|
||
|
int iswlower(wint_t wc)
|
||
|
{
|
||
|
return towupper(wc) != wc;
|
||
|
}
|