Tests for a lowercase character (a to z) in the ASCII code set.
#include <ctype.h>
int islower (
int c);
(IN) Specifies the character to be tested.
Returns a nonzero value when the argument is a lowercase character. Otherwise, it returns zero.