libumem/umem_test.c
2020-06-22 14:21:25 -04:00

26 lines
367 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "umem.h"
#define UMEM_STANDALONE 1
#include "umem_impl.h"
int main(int argc, char *argv[])
{
char *foo;
umem_startup(NULL, 0, 0, NULL, NULL);
foo = umem_alloc(32, UMEM_DEFAULT);
strcpy(foo, "hello there");
printf("Hello %s\n", foo);
umem_free(foo, 32);
return EXIT_SUCCESS;
}