MCPcopy 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
226char* 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
233char* strnupr(char* s, size_t n){
234

Callers

nothing calls this directly

Calls 1

toupperFunction · 0.85

Tested by

no test coverage detected