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