libc/newlib/libc/ctype/towlower_l.c

16 lines
338 B
C

/* Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */
#include <_ansi.h>
#include <newlib.h>
#include <wctype.h>
#include "local.h"
wint_t
towlower_l (wint_t c, struct __locale_t *locale)
{
#ifdef _MB_CAPABLE
return towctrans_l (c, WCT_TOLOWER, locale);
#else
return towlower (c);
#endif /* _MB_CAPABLE */
}