The ifx_gl_iswxdigit() function
The ifx_gl_iswxdigit() function determines whether a wide character contains a hexadecimal digit.
Syntax
#include <ifxgls.h>
...
int ifx_gl_iswxdigit(wc)
gl_wchar_t *wc;
- wc
- A pointer to the wide character whose character classification you want to determine.
Valid in client application | Valid in DataBlade® UDR |
---|---|
Yes | Yes |
Usage
- the 10 ASCII digit characters (ASCII 0x030 to 0x039).
- the characters
A
throughF
. - the characters
a
throughf
.
Any multibyte versions or alternative representations of these hexadecimal digits that the locale might define (for example, Hindi or Kanji digits) are not in this class. Instead, they are in the alpha class.
Characters in this class are also in the graph and print classes. No characters in the blank, space, punct, or cntrl classes are in this class.
To determine whether a wide character contains a decimal digit, you can use the ifx_gl_iswdigit() function. Use the ifx_gl_iswalnum() function to test whether a wide character contains an alphabetic character or a digit.
Locale information
The LC_CTYPE category of the current locale affects the behavior of this function because it defines the xdigit character class.
Return values
- >0
- The wc character is in the digit character class.
- 0
- The function was not successful, and the error number is set to indicate the cause. See the Errors section.
Errors
- IFX_GL_EILSEQ
- The *wc value is not a valid wide character.