Name
isprint function template — Determines whether a character is printable in a
locale
Synopsis
template <typename charT>
bool isprint(charT c, const locale& loc);
The isprint
function
determines whether the character c
is printable in the locale loc
. It returns the following:
use_facet<ctype<charT> >(loc).is(ctype_base::print, c)