std::iswprint (3) Linux Manual Page
std::iswprint – std::iswprint Synopsis Defined in header<cwctype> int iswprint(std::wint_t ch); Checks if the given wide character can be printed, i.e. it is either a number (0123456789), an uppercase letter (ABCDEFGHIJKLMNOPQRSTUVWXYZ), a lowercase letter (abcdefghijklmnopqrstuvwxyz), a punctuation character(!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~), space or any printable character specific to the current C locale. If the value of ch is neither…
