actube/src/capwap/mavl_create.c
7u83@mail.ru 4b05bc97a7 Iitial commit.
FossilOrigin-Name: 1284a66df74fb27ad7d4ff15ab2a60d895f093adb6ccb165a8067cda94a7259d
2015-04-17 05:45:02 +00:00

23 lines
460 B
C

#include "mavl.h"
/**
* Create an AVL tree
* @param cmp pointer compare function
* @param del pointer to delete function which is called when an element will be deletet
* @return pointer to an #mavl struct
*/
struct mavl *mavl_create(int (*cmp) (const void *, const void *),
void (*del) (void *))
{
struct mavl *t = malloc(sizeof(struct mavl));
if (!t)
return NULL;
t->root = 0;
t->count = 0;
t->cmp = cmp;
t->del = del;
return t;
}