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