std::isgraph
Header: <cctype>
Checks if the given character is graphic (has a graphical representation) as classified by the currently installed C locale. In the default C locale, the following characters are graphic:
# Declarations
int isgraph( int ch );
# Parameters
ch: character to classify
# Return value
Non-zero value if the character has a graphical representation character, zero otherwise.
# Notes
Like all other functions from
Similarly, they should not be directly used with standard algorithms when the iterator’s value type is char or signed char. Instead, convert the value to unsigned char first:
# Example
#include <cctype>
#include <clocale>
#include <iostream>
int main()
{
unsigned char c = '\xb6'; // the character ¶ in ISO-8859-1
std::cout << "isgraph(\'\\xb6\', default C locale) returned "
<< std::boolalpha << (std::isgraph(c) != 0) << '\n';
std::setlocale(LC_ALL, "en_GB.iso88591");
std::cout << "isgraph(\'\\xb6\', ISO-8859-1 locale) returned "
<< std::boolalpha << (std::isgraph(c) != 0) << '\n';
}