shithub: front

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