blob: c54f270572359ee5c79d13d32c5fef32a7d09b40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#define _POSIX_C_SOURCE 200809L
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "mapalloc.h"
int main(void)
{
const char buf[] = "THIS IS A CONSTANT STRING";
char *ptr = map_realloc(NULL, sizeof(buf));
memcpy(ptr, buf, sizeof(buf));
printf("%p: %s\n", ptr, ptr);
ptr = map_realloc(ptr, sizeof(buf) * 2);
memcpy(ptr + sizeof(buf), buf, sizeof(buf));
printf("%p: %s\n", ptr, ptr);
}
|