MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / strcat

Function strcat

Kernel/src/string.cpp:210–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208}
209
210char* strcat(char* dest, const char* src){
211 strcpy(dest + strlen(dest), src);
212 return dest;
213}
214
215char* strncat(char* dest, const char* src, size_t n){
216 strncpy(dest + strlen(dest), src, n);

Callers 5

FileViewMethod · 0.85
RunFunction · 0.85
OpenMethod · 0.85
InitializeMenuFunction · 0.85
PartitionDeviceMethod · 0.85

Calls 2

strcpyFunction · 0.85
strlenFunction · 0.85

Tested by

no test coverage detected