wctype.ch
Declarations
Parameters
- ch - wide character @return Non-zero value if the wide character is an alphanumeric character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswalnum
Returns
Non-zero value if the wide character is an alphanumeric character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswalnum
See Also
- https:en.cppreference.com/w/c/string/wide/iswalnum
Parameters
- ch - wide character @return Non-zero value if the wide character is an alphabetic character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswalpha
Returns
Non-zero value if the wide character is an alphabetic character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswalpha
See Also
- https:en.cppreference.com/w/c/string/wide/iswalpha
Parameters
- ch - wide character @return Non-zero value if the wide character is an lowercase letter, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswlower
Returns
Non-zero value if the wide character is an lowercase letter, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswlower
See Also
- https:en.cppreference.com/w/c/string/wide/iswlower
Parameters
- ch - wide character @return Non-zero value if the wide character is an uppercase letter, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswupper
Returns
Non-zero value if the wide character is an uppercase letter, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswupper
See Also
- https:en.cppreference.com/w/c/string/wide/iswupper
Parameters
- ch - wide character @return Non-zero value if the wide character is a numeric character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswdigit
Returns
Non-zero value if the wide character is a numeric character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswdigit
See Also
- https:en.cppreference.com/w/c/string/wide/iswdigit
Parameters
- ch - wide character @return Non-zero value if the wide character is a hexadecimal numeric character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswxdigit
Returns
Non-zero value if the wide character is a hexadecimal numeric character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswxdigit
See Also
- https:en.cppreference.com/w/c/string/wide/iswxdigit
Parameters
- ch - wide character @return Non-zero value if the wide character is a control character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswcntrl
Returns
Non-zero value if the wide character is a control character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswcntrl
See Also
- https:en.cppreference.com/w/c/string/wide/iswcntrl
Parameters
- ch - wide character @return Non-zero value if the wide character has a graphical representation character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswgraph
Returns
Non-zero value if the wide character has a graphical representation character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswgraph
See Also
- https:en.cppreference.com/w/c/string/wide/iswgraph
Parameters
- ch - wide character @return Non-zero value if the wide character is a whitespace character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswspace
Returns
Non-zero value if the wide character is a whitespace character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswspace
See Also
- https:en.cppreference.com/w/c/string/wide/iswspace
Parameters
- ch - wide character @return Non-zero value if the wide character is a blank character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswblank
Returns
Non-zero value if the wide character is a blank character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswblank
See Also
- https:en.cppreference.com/w/c/string/wide/iswblank
Parameters
- ch - wide character @return Non-zero value if the wide character can be printed, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswprint
Returns
Non-zero value if the wide character can be printed, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswprint
See Also
- https:en.cppreference.com/w/c/string/wide/iswprint
Parameters
- ch - wide character @return Non-zero value if the wide character is a punctuation character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswpunct
Returns
Non-zero value if the wide character is a punctuation character, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswpunct
See Also
- https:en.cppreference.com/w/c/string/wide/iswpunct
Parameters
- wc - the wide character to classify @param desc - the LC_CTYPE category, obtained from a call to wctype @return Non-zero if the character wc has the property identified by desc in LC_CTYPE facet of the current C locale, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswctype
- desc - the LC_CTYPE category, obtained from a call to wctype @return Non-zero if the character wc has the property identified by desc in LC_CTYPE facet of the current C locale, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswctype
Returns
Non-zero if the character wc has the property identified by desc in LC_CTYPE facet of the current C locale, zero otherwise. @see https:en.cppreference.com/w/c/string/wide/iswctype
See Also
- https:en.cppreference.com/w/c/string/wide/iswctype
Parameters
- str - C string holding the name of the desired category @return wctype_t object suitable for use with iswctype to classify wide characters according to the named category of the current C locale or zero if str does not name a category supported by the current C locale. @see https:en.cppreference.com/w/c/string/wide/wctype
Returns
wctype_t object suitable for use with iswctype to classify wide characters according to the named category of the current C locale or zero if str does not name a category supported by the current C locale. @see https:en.cppreference.com/w/c/string/wide/wctype
See Also
- https:en.cppreference.com/w/c/string/wide/wctype
Parameters
- wc - wide character to be converted @return Lowercase version of wc or unmodified wc if no lowercase version is listed in the current C locale. @see https:en.cppreference.com/w/c/string/wide/towlower
Returns
Lowercase version of wc or unmodified wc if no lowercase version is listed in the current C locale. @see https:en.cppreference.com/w/c/string/wide/towlower
See Also
- https:en.cppreference.com/w/c/string/wide/towlower
Parameters
- wc - wide character to be converted @return Uppercase version of wc or unmodified wc if no uppercase version is listed in the current C locale. @see https:en.cppreference.com/w/c/string/wide/towupper
Returns
Uppercase version of wc or unmodified wc if no uppercase version is listed in the current C locale. @see https:en.cppreference.com/w/c/string/wide/towupper
See Also
- https:en.cppreference.com/w/c/string/wide/towupper
Parameters
- wc - the wide character to map @param desc - the LC_CTYPE mapping, obtained from a call to wctrans @return The mapped value of wc using the mapping identified by desc in LC_CTYPE facet of the current C locale. @see https:en.cppreference.com/w/c/string/wide/towctrans
- desc - the LC_CTYPE mapping, obtained from a call to wctrans @return The mapped value of wc using the mapping identified by desc in LC_CTYPE facet of the current C locale. @see https:en.cppreference.com/w/c/string/wide/towctrans
Returns
The mapped value of wc using the mapping identified by desc in LC_CTYPE facet of the current C locale. @see https:en.cppreference.com/w/c/string/wide/towctrans
See Also
- https:en.cppreference.com/w/c/string/wide/towctrans
Parameters
- str - C string holding the name of the desired mapping. The following values of str are supported in all C locales: Value of str Effect "toupper" identifies the mapping used by towupper "tolower" identifies the mapping used by towlower @return wctrans_t object suitable for use with towctrans to map wide characters according to the named mapping of the current C locale or zero if str does not name a mapping supported by the current C locale. @see https:en.cppreference.com/w/c/string/wide/wctrans
Returns
wctrans_t object suitable for use with towctrans to map wide characters according to the named mapping of the current C locale or zero if str does not name a mapping supported by the current C locale. @see https:en.cppreference.com/w/c/string/wide/wctrans
See Also
- https:en.cppreference.com/w/c/string/wide/wctrans
See Also