shithub: scc

ref: 763ac8c2a9e79fb0d76d351876a536f12f520335
dir: /lib/c/src/memset.c/

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

void *
memset(void *s, int c, size_t n)
{
	char *m = s;

	while (n-- > 0)
		*m++ = c;
	return s;
}