mirror of
https://github.com/fluencelabs/musl
synced 2025-06-23 19:52:01 +00:00
8 lines
116 B
C
8 lines
116 B
C
#include <string.h>
|
|
|
|
char *strcat(char *dest, const char *src)
|
|
{
|
|
strcpy(dest + strlen(dest), src);
|
|
return dest;
|
|
}
|