aboutsummaryrefslogtreecommitdiffstats
path: root/memory/stpcpy.c
blob: 86421d928e4f14b148d852c46db2bf3c9a040276 (plain) (blame)
1
2
3
4
5
6
#include "memory.h"

char *stpcpy(char *destination, char const *source)
{
	return (char *)rawmemccpy(destination, source, '\0') - 1;
}