blob: e1cecb6dc4c35722e1989f9c02b5a41278ac4579 (
plain) (
blame)
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;
}
|