123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #include "private.h"
- void
- lub_bintree_init(lub_bintree_t *this,
- size_t node_offset,
- lub_bintree_compare_fn compareFn,
- lub_bintree_getkey_fn getkeyFn)
- {
- this->root = NULL;
- this->node_offset = node_offset;
- this->compareFn = compareFn;
- this->getkeyFn = getkeyFn;
- }
|