std::isprint(std::locale)
From cppreference.com
Defined in header <locale>
|
||
template< class charT > bool isprint( charT ch, const locale& loc ); |
||
Checks if the given character classified as a printable character (including space) by the given locale's Template:cpp facet.
Contents |
Parameters
ch | - | character |
loc | - | locale |
Return value
Returns Template:cpp if the character is classified as printable, Template:cpp otherwise.