aboutsummaryrefslogtreecommitdiffstats
path: root/memory/strcpy.c
blob: 106b1a3e09124ca15bf85cd2483bf23b1d05df4d (plain) (blame)
1
2
3
4
5
6
7
#include "memory.h"

char *strcpy(char *destination, char const *source)
{
	stpcpy(destination, source);
	return destination;
}