summaryrefslogtreecommitdiff
path: root/src/string/strcpy.c
blob: 2883e93040d87ebdc055f21c9c91a2dd8fde669d (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <string.h>

char *__stpcpy(char *, const char *);

char *strcpy(char *restrict dest, const char *restrict src)
{
	__stpcpy(dest, src);
	return dest;
}