shithub: riscv

ref: d6a91e0ae47b4e1df9a9783c49666e2a7357e277
dir: /sys/src/libc/port/strcat.c/

View raw version
#include <u.h>
#include <libc.h>

char*
strcat(char *s1, char *s2)
{

	strcpy(strchr(s1, 0), s2);
	return s1;
}