12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include "private.h"
- void *lub_bintree_iterator_previous(lub_bintree_iterator_t * this)
- {
- void *clientnode = lub_bintree_findprevious(this->tree, &this->key);
-
- lub_bintree_iterator_init(this, this->tree, clientnode);
- return clientnode;
- }
|