avl(2): add avlmin/avlmax in synopsis
This commit is contained in:
parent
ff1a1e63a8
commit
59994e1beb
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue