std::islower (3) Linux Manual Page
std::islower – std::islower Synopsis Defined in header<cctype> int islower(int ch); Checks if the given character is classified as a lowercase character according to the current C locale. In the default "C" locale, islower returns a nonzero value only for the lowercase letters (abcdefghijklmnopqrstuvwxyz). If islower returns a nonzero value, it is guaranteed that iscntrl, isdigit,…
