C Programming/ctype.h/tolower

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Synopsis

[edit | edit source]
int tolower(int c);

Description

[edit | edit source]

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

References

[edit | edit source]