repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
netinet/tcp.h: add TCP_NLA_* values up to linux v5.12
[musl.git]
/
src
/
ctype
/
tolower.c
blob
f10132ec2be2d699170569c23e258c64a3384b9a
1
#include <ctype.h>
2
3
int
tolower
(
int
c
)
4
{
5
if
(
isupper
(
c
))
return
c
|
32
;
6
return
c
;
7
}
8
9
int
__tolower_l
(
int
c
,
locale_t l
)
10
{
11
return
tolower
(
c
);
12
}
13
14
weak_alias
(
__tolower_l
,
tolower_l
);