toupper

Full prototype:

int tolower(int);  

Purpose and Notes:

Takes the argument passed into the function and converts it to its locale-specific corresponding lower-case character if applicable and returns the result.

If the character passed in does not have a corresponding locale-specific lowercase or is already lowercase then it is simply returned "as-is".

Returns:

int- the corresponding locale-specific lowercase character of the argument passed in, or simply the character passed in as the only argument if it does not have a corresponding lowercase character.

Argument 1:

int- the character that is to be evaluated to produce its locale-specific corresponding lowercase character.

Example 1
  1    FILLER SOURCE CODE
FILLER TERMINAL