The ifx_gl_iswlower() function
The ifx_gl_iswlower() function determines whether a wide character contains a lowercase alphabetic character.
Syntax
#include <ifxgls.h>
...
int ifx_gl_iswlower(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 ifx_gl_iswlower() function
tests whether wc is in the lower character class
according to the rules of the current locale. The lower character
class contains:
- the ASCII characters a through z.
- all other single-byte and multibyte lowercase characters for Latin-based languages; for example: ∾, ç, é, and ü.
Characters in this class are also in the alpha, graph, and print classes. No characters in the upper, digit, blank, space, punct, or cntrl classes are in this class.
To obtain the uppercase equivalent of an alphabetic wide character, you can use the ifx_gl_towupper() function. Use the ifx_gl_iswalpha() function to test whether a wide character is an alphabetic character (uppercase or lowercase).
Locale information
The LC_CTYPE category of the current locale affects the behavior of this function because it defines the lower 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
This function does not return a unique
value to indicate an error. If an error occurred, the function returns
0 and sets the ifx_gl_lc_errno() error number to
the following value.
- IFX_GL_EILSEQ
- The *wc value is not a valid wide character.