Newer
Older
UbixOS / Dump / hybos / lib / string / strcpy.c
@Christopher W. Olsen Christopher W. Olsen on 5 Nov 2018 81 bytes Sync

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

	return s;
}