ctype.ch
Declarations
Returns
Non-zero value if the character is an alphabetic character, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/isalpha
See Also
- https:en.cppreference.com/w/c/string/byte/isalpha
Returns
Non-zero value if the character is a lowercase letter, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/islower
See Also
- https:en.cppreference.com/w/c/string/byte/islower
Returns
Non-zero value if the character is an uppercase letter, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/isupper
See Also
- https:en.cppreference.com/w/c/string/byte/isupper
Returns
Non-zero value if the character is a numeric character, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/isdigit
See Also
- https:en.cppreference.com/w/c/string/byte/isdigit
Returns
Non-zero value if the character is an hexadecimal numeric character, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/isxdigit
See Also
- https:en.cppreference.com/w/c/string/byte/isxdigit
Returns
Non-zero value if the character is a control character, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/iscntrl
See Also
- https:en.cppreference.com/w/c/string/byte/iscntrl
Returns
Non-zero value if the character has a graphical representation character, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/isgraph
See Also
- https:en.cppreference.com/w/c/string/byte/isgraph
Returns
Non-zero value if the character is a whitespace character, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/isspace
See Also
- https:en.cppreference.com/w/c/string/byte/isspace
Returns
Non-zero value if the character is a blank character, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/isblank
See Also
- https:en.cppreference.com/w/c/string/byte/isblank
Returns
Non-zero value if the character can be printed, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/isprint
See Also
- https:en.cppreference.com/w/c/string/byte/isprint
Returns
Non-zero value if the character is a punctuation character, zero otherwise. @see https:en.cppreference.com/w/c/string/byte/ispunct
See Also
- https:en.cppreference.com/w/c/string/byte/ispunct
Returns
Lowercase version of ch or unmodified ch if no lowercase version is listed in the current C locale. @see https:en.cppreference.com/w/c/string/byte/tolower
See Also
- https:en.cppreference.com/w/c/string/byte/tolower
Returns
Uppercase version of ch or unmodified ch if no uppercase version is listed in the current C locale. @see https:en.cppreference.com/w/c/string/byte/toupper
See Also
- https:en.cppreference.com/w/c/string/byte/toupper
Returns
Non-zero value if the character is an alphanumeric character, 0 otherwise. @see https:en.cppreference.com/w/c/string/byte/isalnum
See Also