1 /*
2 Copyright (c) 2016 Corinna Vinschen <corinna@vinschen.de>
3 Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling
4  */
5 #define _DEFAULT_SOURCE
6 #include <_ansi.h>
7 #include <wctype.h>
8 
9 wctrans_t
wctrans_l(const char * c,struct __locale_t * locale)10 wctrans_l (const char *c, struct __locale_t *locale)
11 {
12   (void) locale;
13   /* We're using a locale-independent representation of upper/lower case
14      based on Unicode data.  Thus, the locale doesn't matter. */
15   return wctrans (c);
16 }
17