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

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