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

Function strlower

renderdoc/strings/string_utils.cpp:56–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54}
55
56rdcstr strlower(const rdcstr &str)
57{
58 rdcstr newstr(str);
59 for(size_t i = 0; i < newstr.size(); i++)
60 newstr[i] = (char)tolower(newstr[i]);
61 return newstr;
62}
63
64rdcstr strupper(const rdcstr &str)
65{

Callers 15

string_utils.cppFile · 0.70
formattedStringMethod · 0.50
add_hooksFunction · 0.50
ApplyHooksMethod · 0.50
RegisterFunctionHookMethod · 0.50
RegisterLibraryHookMethod · 0.50
Win32_ManualHookModuleFunction · 0.50
operator()Method · 0.50
FindRemoteDLLFunction · 0.50
LaunchProcessMethod · 0.50
ShouldInjectMethod · 0.50

Calls 1

sizeMethod · 0.45

Tested by 1

formattedStringMethod · 0.40