tolower
tolower
Defined in header <ctype.h> | ||
---|---|---|
int tolower( int ch ); |
Converts the given character to lowercase according to the character conversion rules defined by the currently installed C locale.
In the default "C" locale, the following uppercase letters ABCDEFGHIJKLMNOPQRSTUVWXYZ
are replaced with respective lowercase letters abcdefghijklmnopqrstuvwxyz
.
Parameters
ch | - | character to be converted. If the value of ch is not representable as unsigned char and does not equal
|