shithub: riscv

ref: 31d509d7a4f9d495473641b046c3c86448b2d980
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;
}