MCPcopy 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
215char* strncat(char* dest, const char* src, size_t n){
216 strncpy(dest + strlen(dest), src, n);
217 return dest;
218}
219
220char toupper(char c){
221 if(c >= 'a' && c <= 'z')

Callers 2

PrintCharFunction · 0.85
PrintCharFunction · 0.85

Calls 2

strncpyFunction · 0.85
strlenFunction · 0.85

Tested by

no test coverage detected