mirror of
https://github.com/status-im/status-go.git
synced 2025-02-06 03:44:38 +00:00
8 lines
134 B
C
8 lines
134 B
C
|
#include <string.h>
|
||
|
|
||
|
char *strcat(char *restrict dest, const char *restrict src)
|
||
|
{
|
||
|
strcpy(dest + strlen(dest), src);
|
||
|
return dest;
|
||
|
}
|