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

char *strnpst(char *s, const char *t, unsigned n)
{
	while(*t && n)
	{
		*(s++) = *(t++);
		n--;
	};

	return s;
}