12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #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;
- }
|