libc/newlib/libc/ctype/towupper_l.c

11 lines
261 B
C

#include <_ansi.h>
#include <wctype.h>
wint_t
towupper_l (wint_t 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 towupper (c);
}