shithub: scc

ref: 4fe7b3c5097db6b24eef3680dec682b3d552bd64
dir: /src/libc/string/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;
}