/* Copyright (c) 2016 Corinna Vinschen Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */ #define _DEFAULT_SOURCE #include #undef toascii_l int toascii_l (int c, struct __locale_t *locale) { (void) locale; return c & 0177; }