6023a70
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <stdio.h> #include <string.h> #include "malloc.h" int main(void) { char *s = my_calloc(sizeof(char), 11); strcpy(s, "just werks"); printf("%s\n", s); my_free(s); return 0; }