Sign in
android
/
platform
/
external
/
musl
/
aa59d7880b1194c821029d464f93561a2600d57e
/
.
/
src
/
ctype
/
isupper.c
blob: bfd15acdbe5291551a557d1a94980ae99e6e1024 [
file
] [
log
] [
blame
]
#include
<ctype.h>
#undef
isupper
int
isupper
(
int
c
)
{
return
(
unsigned
)
c
-
'A'
<
26
;
}
int
__isupper_l
(
int
c
,
locale_t
l
)
{
return
isupper
(
c
);
}
weak_alias
(
__isupper_l
,
isupper_l
);