SilverScreen Solid Modeler

tolower

tolower

Previous topic Next topic  

tolower

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

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

toupper , strlwr