1ISWXDIGIT(3) Linux Programmer's Manual ISWXDIGIT(3)
2
3
4
6 iswxdigit - test for hexadecimal digit wide character
7
9 #include <wctype.h>
10
11 int iswxdigit(wint_t wc);
12
14 The iswxdigit() function is the wide-character equivalent of the
15 isxdigit() function. It tests whether wc is a wide character belonging
16 to the wide character class "xdigit".
17
18 The wide character class "xdigit" is a subclass of the wide character
19 class "alnum", and therefore also a subclass of the wide character
20 class "graph" and of the wide character class "print".
21
22 Being a subclass of the wide character class "print", the wide charac‐
23 ter class "xdigit" is disjoint from the wide character class "cntrl".
24
25 Being a subclass of the wide character class "graph", the wide charac‐
26 ter class "xdigit" is disjoint from the wide character class "space"
27 and its subclass "blank".
28
29 Being a subclass of the wide character class "alnum", the wide charac‐
30 ter class "xdigit" is disjoint from the wide character class "punct".
31
32 The wide character class "xdigit" always contains at least the letters
33 'A' to 'F', 'a' to 'f' and the digits '0' to '9'.
34
36 The iswxdigit() function returns non-zero if wc is a wide character
37 belonging to the wide character class "xdigit". Otherwise it returns
38 zero.
39
41 C99.
42
44 iswctype(3), isxdigit(3)
45
47 The behaviour of iswxdigit() depends on the LC_CTYPE category of the
48 current locale.
49
50
51
52GNU 1999-07-25 ISWXDIGIT(3)