ISLOWER - check for lower case letter.

(ANSI Standard)

Usage:

#include <ctype.h>
i = islower(c);

Where:

int c;
is the character you want to check.
int i;
is 1 if "c" is a lower case letter, and 0 otherwise.

Description:

"islower" determines whether a character is lower case.

Copyright © 1996, Thinkage Ltd.