Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/LemonOSProject/LemonOS
/ strupr
Function
strupr
Kernel/src/string.cpp:226–231 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
224
}
225
226
char* strupr(char* s){
227
for(size_t i = 0; s[i] !=
'\0'
; i++){
228
s[i] = toupper(s[i]);
229
}
230
return s;
231
}
232
233
char* strnupr(char* s, size_t n){
234
Callers
nothing calls this directly
Calls
1
toupper
Function · 0.85
Tested by
no test coverage detected