ref: 71a993b4ca2c455f491aad669e3a4ac2979f6bb8 dir: /sys/src/ape/lib/ap/gen/memset.c/
#include <string.h> void* memset(void *ap, int c, size_t n) { char *p; p = ap; while(n > 0) { *p++ = c; n--; } return ap; }