std::isgraph (3) Linux Manual Page
std::isgraph – std::isgraph Synopsis Defined in header<cctype> int isgraph(int ch); Checks if the given character is graphic (has a graphical representation) as classified by the currently installed C locale. In the default C locale, the following characters are graphic: * digits (0123456789) * uppercase letters (ABCDEFGHIJKLMNOPQRSTUVWXYZ) * lowercase letters (abcdefghijklmnopqrstuvwxyz) * punctuation characters (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~) The…
