shithub: scc

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