islowerint
islowerint is a programming utility used to test whether a given integer represents a lowercase letter in the active character set. It is conceptually analogous to more common character classification functions such as islower, but phrased to emphasize the input as an integer code point rather than a character value in a particular language.
Typically, the function has a signature similar to int islowerint(int ch); it returns a nonzero value when
Implementation details vary by language and library. Some APIs require the input to be a valid unsigned
See also: islower, isupper, isalpha, tolower, toupper, locale.