#include <ctype.h>
int tolower(int ch);
tolower() converts any upper-case character in the range from A to Z into a lower-case character from a to z.
If ch is an upper-case character, returns the corresponding lower-case letter. Otherwise, returns ch (unchanged).
islower()
isupper()
toupper()