diff options
Diffstat (limited to 'include/zix/tree.h')
-rw-r--r-- | include/zix/tree.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/zix/tree.h b/include/zix/tree.h index 53cb375..eade134 100644 --- a/include/zix/tree.h +++ b/include/zix/tree.h @@ -51,8 +51,8 @@ zix_tree_size(const ZixTree* ZIX_NONNULL t); /// Insert the element `e` into `t` and point `ti` at the new element ZIX_API ZixStatus -zix_tree_insert(ZixTree* ZIX_NONNULL t, - void* ZIX_NULLABLE e, +zix_tree_insert(ZixTree* ZIX_NONNULL t, + void* ZIX_NULLABLE e, ZixTreeIter* ZIX_NULLABLE* ZIX_NULLABLE ti); /// Remove the item pointed at by `ti` from `t` @@ -67,8 +67,8 @@ zix_tree_remove(ZixTree* ZIX_NONNULL t, ZixTreeIter* ZIX_NONNULL ti); */ ZIX_API ZixStatus -zix_tree_find(const ZixTree* ZIX_NONNULL t, - const void* ZIX_NULLABLE e, +zix_tree_find(const ZixTree* ZIX_NONNULL t, + const void* ZIX_NULLABLE e, ZixTreeIter* ZIX_NULLABLE* ZIX_NONNULL ti); /// Return the data associated with the given tree item |