summaryrefslogtreecommitdiff
path: root/user/lib/stpcpy.c
blob: 1586a3754fc870426554c8ef4c242dd980dd5b3b (plain)
1
2
3
4
5
6
7
8
9
#include <string.h>

char *stpcpy(char *restrict dest, const char *restrict src)
{
	char *d = dest;
	for (; (*d = *src); d++, src++)
		;
	return d;
}