Sign in
mojo
/
mojo-tools
/
24614f9961413d4527a5b1bc525102380f825705
/
.
/
fusl
/
src
/
ctype
/
iswupper.c
blob: 850a6e0320d6ae1c705c2c2838cce7e98d2ce7eb [
file
] [
log
] [
blame
]
#include
<wctype.h>
#include
"libc.h"
int
iswupper
(
wint_t
wc
)
{
return
towlower
(
wc
)
!=
wc
;
}
int
__iswupper_l
(
wint_t
c
,
locale_t
l
)
{
return
iswupper
(
c
);
}
weak_alias
(
__iswupper_l
,
iswupper_l
);