OpenGrok
Cross Reference: toupper_l.c
xref
: /
prebuilts
/
ndk
/
r13
/
sources
/
android
/
support
/
src
/
musl-locale
/
toupper_l.c
Home
|
History
|
Annotate
|
Download
|
only in
musl-locale
1
#
include
<
ctype.h
>
2
3
int
toupper_l
(
int
c,
locale_t
l)
4
{
5
return
toupper
(c);
6
}
7