1 2 3 4 5 6 7 8 9
#include <wctype.h> #include "libc.h" wint_t towlower_l(wint_t c, locale_t l) { return towlower(c); } weak_alias(towlower_l, __towlower_l);