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