mirror of
https://github.com/fluencelabs/musl
synced 2025-06-25 04:31:56 +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;
|
||
|
}
|