shithub: scc

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