tolower function — Converts a character to lowercase
int tolower(int c)
The tolower
function
converts uppercase characters to lowercase. If c
is uppercase (that is, isupper(c)
returns true), tolower
returns the corresponding
lowercase character (for which islower
returns true) in the current
locale, if there is such a character. Otherwise, it returns c
.