28 Text processing library [text]
template<class charT> charT toupper(charT c, const locale& loc);
Returns:
use_facet<ctype<charT>>(loc).toupper(c). template<class charT> charT tolower(charT c, const locale& loc);
Returns:
use_facet<ctype<charT>>(loc).tolower(c).