[#ToUpper-00] = ToUpper :mrdocs: `ToUpper` overloads == Synopses Declared in `<util/strencodings.h>` Converts the given character to its uppercase equivalent. This function is locale independent. It only converts lowercase characters in the standard 7‐bit ASCII range. This is a feature, not a limitation. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr char xref:ToUpper-04c.adoc[ToUpper](char c); ---- [.small]#xref:ToUpper-04c.adoc[_» more..._]# Returns the uppercase equivalent of the given string. This function is locale independent. It only converts lowercase characters in the standard 7‐bit ASCII range. This is a feature, not a limitation. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::string xref:ToUpper-041.adoc[ToUpper](std::string_view str); ---- [.small]#xref:ToUpper-041.adoc[_» more..._]# == Return Value * the uppercase equivalent of c; or the argument if no conversion is possible. * UPPERCASED EQUIVALENT OF str == Parameters [cols="1,4"] |=== | Name| Description | *c* [in] | the character to convert to uppercase. | *str* [in] | the string to convert to uppercase. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#