Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Aegel5/SimpleSwitcher
/ toUpper
Function
toUpper
src/WorkerImplement.cpp:91–97 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
89
//}
90
91
void toUpper(std::wstring& buf) {
92
auto copy = buf;
93
StrUtils::ToUpper(buf);
94
if (copy == buf){
95
StrUtils::ToLower(buf);
96
}
97
}
98
99
void InvertCase(std::wstring& buf) {
100
for (auto& c : buf) {
Callers
1
GetClipStringCallback
Method · 0.85
Calls
2
ToUpper
Function · 0.85
ToLower
Function · 0.85
Tested by
no test coverage detected