avl(2): add avlmin/avlmax in synopsis

This commit is contained in:
mischief 2018-06-08 16:37:39 +00:00
parent ff1a1e63a8
commit 59994e1beb

View file

@ -31,6 +31,8 @@ Avltree *avlcreate(int(*cmp)(Avl*, Avl*));
Avl *avlinsert(Avltree *tree, Avl *new);
Avl *avldelete(Avltree *tree, Avl *key);
Avl *avllookup(Avltree *tree, Avl *key, int dir);
Avl *avlmin(Avltree *tree);
Avl *avlmax(Avltree *tree);
Avl *avlnext(Avl *n);
Avl *avlprev(Avl *n);