1 /*
2 Copyright (c) 2016 Corinna Vinschen <corinna@vinschen.de>
3 Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling
4  */
5 
6 #define _DEFAULT_SOURCE
7 #include <ctype.h>
8 
9 #undef isxdigit_l
10 int
isxdigit_l(int c,struct __locale_t * locale)11 isxdigit_l (int c, struct __locale_t *locale)
12 {
13 #ifdef __HAVE_LOCALE_INFO__
14     return __locale_ctype_ptr_l (locale)[c+1] & ((_X)|(_N));
15 #else
16     (void) locale;
17     return isxdigit(c);
18 #endif
19 }
20 
21