islower Function (Macro)

ctype.h

short islower (short c);

Checks whether a character is a lowercase.

islower returns nonzero if c is a lowercase letter ('a' to 'z'), otherwise it returns zero. It is a small inline function which is implemented using GNU C smart macros.