Iitial commit.

FossilOrigin-Name: 1284a66df74fb27ad7d4ff15ab2a60d895f093adb6ccb165a8067cda94a7259d
This commit is contained in:
7u83@mail.ru
2015-04-17 05:45:02 +00:00
parent 8eeaa28ffb
commit 4b05bc97a7
6 changed files with 933 additions and 0 deletions

22
src/capwap/mavl_create.c Normal file
View File

@ -0,0 +1,22 @@
#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;
}