ucx/avl.h

changeset 205
54a7ceb9151f
parent 204
4477987d40cd
child 218
b20d6088795c
     1.1 --- a/ucx/avl.h	Tue May 19 16:47:54 2015 +0200
     1.2 +++ b/ucx/avl.h	Tue May 19 17:01:28 2015 +0200
     1.3 @@ -153,7 +153,7 @@
     1.4   * @param key the key
     1.5   * @return the node (or <code>NULL</code>, if the key is not present)
     1.6   */
     1.7 -UcxAVLNode *ucx_avl_getn(UcxAVLTree *tree, intptr_t key);
     1.8 +UcxAVLNode *ucx_avl_get_node(UcxAVLTree *tree, intptr_t key);
     1.9  
    1.10  /**
    1.11   * Gets the value from the tree, that is associated with the specified key.
    1.12 @@ -202,7 +202,7 @@
    1.13   * @param node the node to remove
    1.14   * @return zero, if and only if an element has been removed
    1.15   */
    1.16 -int ucx_avl_remove_n(UcxAVLTree *tree, UcxAVLNode *node);
    1.17 +int ucx_avl_remove_node(UcxAVLTree *tree, UcxAVLNode *node);
    1.18  
    1.19  /**
    1.20   * Removes an element from the AVL tree.

mercurial