freebsd-dev/test-ohash.c

22 lines
435 B
C
Raw Normal View History

2014-11-22 18:08:25 +00:00
#include <stdint.h>
#include <stddef.h>
#include <stdlib.h>
#include <ohash.h>
2016-01-15 23:08:59 +00:00
void *xmalloc(size_t sz, void *arg) { return calloc(1,sz); }
void *xcalloc(size_t nmemb, size_t sz, void *arg) { return calloc(nmemb,sz); }
2014-11-22 18:08:25 +00:00
void xfree(void *p, void *arg) { free(p); }
int
main(void)
{
struct ohash h;
struct ohash_info i;
i.alloc = xmalloc;
i.calloc = xcalloc;
i.free = xfree;
ohash_init(&h, 2, &i);
ohash_delete(&h);
return 0;
}