_tolower - transliterate upper-case characters to lower-case
#include <ctype.h>
int _tolower(int c);
The _tolower() macro is equivalent to tolower(c) except that the argument c must be an upper-case letter.
On successful completion, _tolower() returns the lower-case letter corresponding to the argument passed.
No errors are defined.
None.
None.
None.
tolower()
, isupper(), <ctype.h>, the Locale specification.
Derived from Issue 1 of the SVID.