shithub: front

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