1 /* 2 Copyright (c) 2016 Corinna Vinschen <corinna@vinschen.de> 3 Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling 4 */ 5 #define _DEFAULT_SOURCE 6 #include <wctype.h> 7 8 wctype_t wctype_l(const char * c,struct __locale_t * locale)9wctype_l (const char *c, struct __locale_t *locale) 10 { 11 (void) locale; 12 return wctype (c); 13 } 14