C Programming/ctype.h/tolower

Synopsis

edit
int tolower(int c);

Description

edit

This function transliterates an uppercase character to lowercase and returns it. If c is not an uppercase letter, c is returned unchanged.

References

edit