/* Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */ #include <_ansi.h> #include #include #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 */ }