ref: 43e3393ad7bb57bef89fedfe2cd4f48c33588bcc dir: /src/libc/string/memset.c/
#include <string.h> #undef memset void * memset(void *s, int c, size_t n) { char *m = s; while (n-- > 0) *m++ = c; return s; }