.\" ident @(#)tolower.3 .\" Standard Template Library .\" $$RW_INSERT_HEADER "slyrs.man" .TH tolower 3C++ "02 Apr 1998" "Rogue Wave Software" "-" .ce2 Standard C++ Library Copyright 1998, Rogue Wave Software, Inc. .SH NAME \f2tolower\fP \ - Converts a character to lower case. .SH SYNOPSIS .RE .RS 0 #include .br template .br charT tolower (charT c, const locale& loc) const; .SH DESCRIPTION The tolower function returns the parameter \f2c\fP after converting it to lower case. The conversion is made using the ctype facet from the locale parameter. .SH EXAMPLE .br // .br // toupper.cpp .br // .br #include .br .br int main () .br { .RE .RS 1 using namespace std; .br locale loc; .br cout << 'a' << toupper('c') << tolower('F') << endl; .br .br return 0; .RE .RS 0 } .SH SEE ALSO toupper, locale, ctype