tolower()

Syntax
  #include <ctype.h>

  
  int tolower(int ch);

  
Description

tolower() converts any upper-case character in the range from A to Z into a lower-case character from a to z.

Return

If ch is an upper-case character, returns the corresponding lower-case letter. Otherwise, returns ch (unchanged).

See also

islower()

isupper()

toupper()