Rev 2416 | Rev 2431 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2416 | Rev 2421 | ||
|---|---|---|---|
| Line 61... | Line 61... | ||
| 61 | /** Search first occurence (oldest node with this key) of given key in Extended AVL tree. |
61 | /** Search first occurence (oldest node with this key) of given key in Extended AVL tree. |
| 62 | * |
62 | * |
| 63 | * @param t Extended AVL tree. |
63 | * @param t Extended AVL tree. |
| 64 | * @param key Key to be searched. |
64 | * @param key Key to be searched. |
| 65 | * |
65 | * |
| 66 | * @return Pointer to value or NULL if there is no such key. |
66 | * @return Pointer to node or NULL if there is no such key. |
| 67 | */ |
67 | */ |
| 68 | extavltree_node_t *extavltree_search(extavltree_t *t, uint64_t key) |
68 | extavltree_node_t *extavltree_search(extavltree_t *t, uint64_t key) |
| 69 | { |
69 | { |
| 70 | extavltree_node_t *cur; |
70 | extavltree_node_t *cur; |
| 71 | 71 | ||