Newer
Older
UbixOS / Dump / hybos / lib / string / strcpy.c
@cwolsen cwolsen on 31 Oct 2018 88 bytes Big Dump

char *strcpy(char *s, const char *t)
{
	while((*(s++) = *(t++)));

	return s;
}