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