MicrOS
tolower.c File Reference
#include "../ctype.h"

Functions

int tolower (int c)
 Make letter lower. More...
 

Function Documentation

◆ tolower()

int tolower ( int  c)

Make letter lower.

The tolower function converts an uppercase letter to a corresponding lowercase letter.

Parameters
cValue to check.
Returns
If the argument is a character for which isupper is true and there are one or more corresponding characters, as specified by the current locale, for which islower is true, the tolower function returns one of the corresponding characters (always the same one for any giv en locale); otherwise, the argument is returned unchanged.