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