shithub: scc

ref: 258c23680f121b4681340e155a75e072531cc104
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;
}