diff options
author | mischief <mischief@offblast.org> | 2018-06-08 16:37:39 +0000 |
---|---|---|
committer | mischief <mischief@offblast.org> | 2018-06-08 16:37:39 +0000 |
commit | 59994e1bebd12bba947be94b4625520759045b8c (patch) | |
tree | ad1aa8938dfdb0641d8eb0038165806889257b44 | |
parent | ff1a1e63a897e01578de27fa6bf41b2c8793e23e (diff) |
avl(2): add avlmin/avlmax in synopsis
-rw-r--r-- | sys/man/2/avl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/man/2/avl b/sys/man/2/avl index 9df362037..0dd98f844 100644 --- a/sys/man/2/avl +++ b/sys/man/2/avl @@ -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); |