This website requires JavaScript.
Explore
Help
Sign In
RepoMirrors
/
musl
Watch
1
Star
0
Fork
0
You've already forked musl
mirror of
git://git.musl-libc.org/musl
synced
2025-01-29 01:52:48 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
bf7b7282f5
musl
/
src
/
locale
/
iswlower_l.c
7 lines
83 B
C
Raw
Normal View
History
Unescape
Escape
add more of the locale_t interfaces, all dummied out to ignore the locale
2012-02-07 02:29:31 +00:00
#
include
<wctype.h>
fix some omissions and mistakes in locale_t interface definitions
2012-02-07 02:33:40 +00:00
int
iswlower_l
(
wint_t
c
,
locale_t
l
)
add more of the locale_t interfaces, all dummied out to ignore the locale
2012-02-07 02:29:31 +00:00
{
return
iswlower
(
c
)
;
}
Reference in New Issue
Copy Permalink