actube/src/cw/examples/mavl_add_example.c
7u83@mail.ru e50b8b29b0 Added examples
FossilOrigin-Name: affc62bafc288eb7ab174a463aba77cc0afe6b9b75ab59d92b945245c38392dd
2018-03-06 02:09:28 +00:00

28 lines
491 B
C

#include <errno.h>
#include <stdio.h>
#include "cw/mavl.h"
...
mavldata_t * result, data;
mavl_t tree;
/* create a mavl tree to store integers */
tree = mavl_create(mavl_cmp_dword, NULL);
... do some other stuff
/* add the value 17 to the tree */
data.dword = 17;
result = mavl_add(tree,&data);
if (result == NULL )
printf("Error: %s", strerror(errno));
if (result == &data)
printf("Element already exists\n");
else
printf("Element successful addded");
}