iswlower
iswlower is a function in the C standard library used to test whether a wide character is a lowercase letter. It is declared in the header wctype.h and is the wide-character counterpart to the islower function. The classification is locale-dependent, relying on the current LC_CTYPE setting.
The function signature is int iswlower(wint_t wc); it takes a wide character value represented as a wint_t
Behavior and usage considerations: iswlower classifies characters according to the current locale, so changing the locale
Compatibility and portability: iswlower is part of the C standard library and is available on conforming implementations
See also: isupper, islower, iswalpha, towlower, wctype, setlocale.