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