MCPcopy Create free account
hub / github.com/baldurk/renderdoc / strupper

Function strupper

renderdoc/strings/string_utils.cpp:64–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62}
63
64rdcstr strupper(const rdcstr &str)
65{
66 rdcstr newstr(str);
67 for(size_t i = 0; i < newstr.size(); i++)
68 newstr[i] = (char)toupper(newstr[i]);
69 return newstr;
70}
71
72static bool ispathsep(char c)
73{

Callers 3

string_utils.cppFile · 0.70
GenerateJSONFunction · 0.50
RegisterHooksMethod · 0.50

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected