Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Tencent/phxrpc
/ ToUpper
Method
ToUpper
codegen/syntax_tree.cpp:186–193 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
184
}
185
186
char *SyntaxTree::ToUpper(char *s) {
187
char *ret = s;
188
189
for (; *s !=
'\0'
; s++)
190
*s = toupper(*s);
191
192
return ret;
193
}
194
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected