shithub: scc

ref: 61f5fa44e9f8b7ce6ee4cd5bd71c10845287960d
dir: /src/libc/string/strcpy.c/

View raw version
#include <string.h>
#undef strcpy

char *
strcpy(char * restrict dst, const char * restrict src)
{
	char *ret = dst;

	while (*dst++ = *src++)
		;
	return ret;
}