Name
tolower function template — Converts a character to lowercase in a
locale
Synopsis
template <typename charT>
charT tolower(charT c, const locale& loc);
The tolower
function
converts the character c
to
lowercase using the locale loc
:
use_facet<ctype<charT> >(loc).tolower(c)