Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/LemonOSProject/LemonOS
/ strncat
Function
strncat
Kernel/src/string.cpp:215–218 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
213
}
214
215
char* strncat(char* dest, const char* src, size_t n){
216
strncpy(dest + strlen(dest), src, n);
217
return dest;
218
}
219
220
char toupper(char c){
221
if(c >=
'a'
&& c <=
'z'
)
Callers
2
PrintChar
Function · 0.85
PrintChar
Function · 0.85
Calls
2
strncpy
Function · 0.85
strlen
Function · 0.85
Tested by
no test coverage detected