From dc86ed35a4a41ab53bb595e69fe57c29264fd146 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sat, 14 Feb 2015 19:59:50 +0100 Subject: Add lower/upper bound test ; fix id_key_cmp_fun. --- src/common/libalgo/btree.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/common/libalgo/btree.c') diff --git a/src/common/libalgo/btree.c b/src/common/libalgo/btree.c index 08a43ef..20323aa 100644 --- a/src/common/libalgo/btree.c +++ b/src/common/libalgo/btree.c @@ -261,6 +261,7 @@ void* btree_upper(btree_t *t, const void* key) { return i->val; } + void btree_iter(btree_t *t, kv_iter_fun_t f) { void iter_aux(btree_item_t *i, kv_iter_fun_t f) { if (i == 0) return; -- cgit v1.2.3