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

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

	return s;
}