summaryrefslogtreecommitdiff
path: root/lib/libc/string/stpcpy.c
blob: 04c3a17f03d296c2a84b5e3d0451f5ecbac2f5fa (plain)
1
2
3
4
5
6
7
8
#include <string.h>

char *stpcpy(char *restrict s1, const char *restrict s2)
{
	while ((*s1++ = *s2++))
		;
	return s1 - 1;
}