Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
ctype
/
tolower.c
blob: 362d6b2becdebbae8c123de7a3f580abe8536c02 [
file
] [
log
] [
blame
]
#include
<ctype.h>
#include
"libc.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
);