The tolower function

Name

tolower -- 

Synopsis

#include <ctype.h>

int tolower (int c);

Description

The tolower function converts an upper case letter to the corresponding lower case letter.

Returns

If the argument is a character for which isupper is true and there is a corresponding character for which islower is true, the tolower function returns the corresponding character; otherwise, the argument is returned unchanged.