summaryrefslogtreecommitdiff
path: root/sys/include/avl.h
diff options
context:
space:
mode:
authorspew <devnull@localhost>2017-04-22 14:28:02 -0500
committerspew <devnull@localhost>2017-04-22 14:28:02 -0500
commit6261dcb06b11c2db815b2e259b25b18a9673d900 (patch)
tree3ec7f3b8808a9499c7b87a2923f2ac09845af6d6 /sys/include/avl.h
parent9cf519814591413493be10cfaa00853cb15e7a0b (diff)
replica: use libavl for avl tree implementation
Diffstat (limited to 'sys/include/avl.h')
-rw-r--r--sys/include/avl.h2
1 files changed, 2 insertions, 0 deletions
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*);