Character Classification Functions


islower (Macro)


Syntax

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

Arguments

c      character code

Return Value

An int value that is either nonzero (true) or zero (false)

Description

Checks to see if the specified character is a lowercase letter.