ref: 232f814cbdfd8ab842db3419844f1988cbf8d367 dir: /lib/c/src/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; }