|
||
int tolower( int c )
int c; /* input char */
|
|
|
Synopsis |
#include "ctype.h"
The tolower function converts c to lowercase if it is an uppercase letter.
|
|
Parameters |
c is the input character, expanded to an int .
|
|
Return Value |
tolower returns the resultant character, expanded to an int .
|
|
See Also |
|
|
|
|