mirror of
https://github.com/fluencelabs/musl
synced 2025-07-09 03:22:07 +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;
|
||
|
}
|