std::toupper(std::locale) (3) - Linux Manuals
std::toupper(std::locale): std::toupper(std::locale)
NAME
std::toupper(std::locale) - std::toupper(std::locale)
Synopsis
Defined in header <locale>
template< class charT >
charT toupper( charT ch, const locale& loc );
Converts the character ch to uppercase if possible, using the conversion rules specified by the given locale's std::ctype facet.
Parameters
ch - character
loc - locale
Return value
Returns the uppercase form of ch if one is listed in the locale, otherwise returns ch unchanged.
Notes
Only 1:1 character mapping can be performed by this function, e.g. the uppercase form of 'ß' is (with some exceptions) the two-character string "SS", which cannot be obtained by std::toupper.
Possible implementation
Example
// Run this code
Output:
See also
tolower(std::locale) (function template)
toupper (function)
towupper (function)