36 #ifndef LIBAVL_ALLOCATOR
37 #define LIBAVL_ALLOCATOR
52 #ifndef TAVL_MAX_HEIGHT
53 #define TAVL_MAX_HEIGHT 32
103 #define tavl_count(table) ((size_t) (table)->tavl_count)
struct tavl_node * tavl_node
void * tavl_replace(struct tavl_table *table, void *item)
void tavl_item_func(void *tavl_item, void *tavl_param)
void * tavl_t_next(struct tavl_traverser *trav)
void * tavl_t_prev(struct tavl_traverser *trav)
void * tavl_t_last(struct tavl_traverser *trav, struct tavl_table *tree)
void * tavl_t_copy(struct tavl_traverser *trav, const struct tavl_traverser *src)
void * tavl_copy_func(void *tavl_item, void *tavl_param)
void ** tavl_probe(struct tavl_table *tree, void *item)
struct tavl_table * tavl_copy(const struct tavl_table *org, tavl_copy_func *copy, tavl_item_func *destroy, struct libavl_allocator *allocator)
void(* libavl_free)(struct libavl_allocator *, void *libavl_block)
void * tavl_delete(struct tavl_table *tree, const void *item)
void * tavl_t_cur(struct tavl_traverser *trav)
void * tavl_malloc(struct libavl_allocator *allocator, size_t size)
struct tavl_table * tavl_create(tavl_comparison_func *compare, void *param, struct libavl_allocator *allocator)
struct tavl_node * tavl_link[2]
void * tavl_t_first(struct tavl_traverser *trav, struct tavl_table *tree)
void tavl_t_init(struct tavl_traverser *trav, struct tavl_table *tree)
void * tavl_insert(struct tavl_table *table, void *item)
int tavl_comparison_func(const void *tavl_a, const void *tavl_b, void *tavl_param)
void tavl_free(struct libavl_allocator *allocator, void *block)
void * tavl_find(const struct tavl_table *tree, const void *item)
struct tavl_node * tavl_root
void * tavl_t_find(struct tavl_traverser *trav, struct tavl_table *tree, void *item)
struct libavl_allocator tavl_allocator_default
void * tavl_t_replace(struct tavl_traverser *trav, void *new)
void * tavl_t_insert(struct tavl_traverser *trav, struct tavl_table *tree, void *item)
tavl_comparison_func * tavl_compare
void() tavl_assert_insert(struct tavl_table *table, void *item)
void *() tavl_assert_delete(struct tavl_table *table, void *item)
struct tavl_table * tavl_table
void tavl_destroy(struct tavl_table *tree, tavl_item_func *destroy)
struct libavl_allocator * tavl_alloc