Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
64
rdcstr 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
72
static bool ispathsep(char c)
73
{
Callers
3
string_utils.cpp
File · 0.70
GenerateJSON
Function · 0.50
RegisterHooks
Method · 0.50
Calls
1
size
Method · 0.45
Tested by
no test coverage detected