Retro68/gcc/newlib/libc/ctype/wctrans_l.c
2017-10-07 02:16:47 +02:00

11 lines
267 B
C

#include <_ansi.h>
#include <wctype.h>
wctrans_t
wctrans_l (const char *c, struct __locale_t *locale)
{
/* We're using a locale-independent representation of upper/lower case
based on Unicode data. Thus, the locale doesn't matter. */
return wctrans (c);
}