From 6261dcb06b11c2db815b2e259b25b18a9673d900 Mon Sep 17 00:00:00 2001 From: spew Date: Sat, 22 Apr 2017 14:28:02 -0500 Subject: replica: use libavl for avl tree implementation --- sys/include/avl.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/include/avl.h') diff --git a/sys/include/avl.h b/sys/include/avl.h index be7b18a5c..1cefd8a95 100644 --- a/sys/include/avl.h +++ b/sys/include/avl.h @@ -20,5 +20,7 @@ Avltree *avlcreate(int(*)(Avl*, Avl*)); Avl *avllookup(Avltree*, Avl*, int); Avl *avldelete(Avltree*, Avl*); Avl *avlinsert(Avltree*, Avl*); +Avl *avlmin(Avltree*); +Avl *avlmax(Avltree*); Avl *avlnext(Avl*); Avl *avlprev(Avl*); -- cgit v1.2.3