Standard C++ Library
Copyright 1998, Rogue Wave Software, Inc.
isgraph
- Determines if a character is a graphic character.
#include <locale>
template <class charT>
bool isgraph (charT c, const locale& loc) const;
The isgraph_function returns true if the character passed as
a parameter is a graphic character. Otherwise the function
returns false. The check is made using the ctype facet
from the locale parameter.
Other 'is' functions, locale, ctype