ref: 4eaac6bfb11cc84259e8b418d4babffdf1c637eb dir: /lib/c/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; }