GDN:tolower

From LibrePlanet
Revision as of 16:27, 4 December 2013 by Dgumberg (talk | contribs) (Created page with "{{Infobox Function | header = ctype.h | since = C90 If c is an upper-case letter, <code>tolower</code> returns the corresponding lower-case letter. If c is not an uppe...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

{{Infobox Function

| header = ctype.h | since = C90

If c is an upper-case letter, tolower returns the corresponding lower-case letter. If c is not an upper-case letter, c is returned unchanged.

Contents

Prototype

<source lang="c"> int tolower (int c)</source>