std::ispunct (3) Linux Manual Page
std::ispunct – std::ispunct Synopsis Defined in header<cctype> int ispunct(int ch); Checks if the given character is a punctuation character as classified by the current C locale. The default C locale classifies the characters !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ as punctuation. The behavior is undefined if the value of ch is not representable as unsigned char and is not equal…
