repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
ctype
/
wctrans_l.c
blob
30e61a4722af8521f65502b197f09b33c3c5ae3e
1
#include <_ansi.h>
2
#include <wctype.h>
3
4
wctrans_t
5
wctrans_l
(
const char
*
c
,
struct
__locale_t
*
locale
)
6
{
7
/* We're using a locale-independent representation of upper/lower case
8
based on Unicode data. Thus, the locale doesn't matter. */
9
return
wctrans
(
c
);
10
}