Sign in
android
/
platform
/
external
/
musl
/
aa59d7880b1194c821029d464f93561a2600d57e
/
.
/
src
/
ctype
/
tolower.c
blob: f10132ec2be2d699170569c23e258c64a3384b9a [
file
] [
log
] [
blame
]
#include
<ctype.h>
int
tolower
(
int
c
)
{
if
(
isupper
(
c
))
return
c
|
32
;
return
c
;
}
int
__tolower_l
(
int
c
,
locale_t
l
)
{
return
tolower
(
c
);
}
weak_alias
(
__tolower_l
,
tolower_l
);