shithub: riscv

ref: bfee76e5d34e893f7af047e6cd4358f5f1fbf428
dir: /sys/src/ape/lib/ap/gen/strcat.c/

View raw version
#include <string.h>

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

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