summaryrefslogtreecommitdiffstats
path: root/include/zix/tree.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-06-28 18:48:13 -0400
committerDavid Robillard <d@drobilla.net>2022-06-28 19:02:49 -0400
commit5d62313812b2fee9a4986e6b7ca1af40fb4f2fb6 (patch)
treec26b76c969946723bbdd4c693bce9a257c971bd5 /include/zix/tree.h
parent24a2c931bc6b84c5fd132d8c892b46ff05a8b369 (diff)
downloadzix-5d62313812b2fee9a4986e6b7ca1af40fb4f2fb6.tar.gz
zix-5d62313812b2fee9a4986e6b7ca1af40fb4f2fb6.tar.bz2
zix-5d62313812b2fee9a4986e6b7ca1af40fb4f2fb6.zip
Fix whitespace
Diffstat (limited to 'include/zix/tree.h')
-rw-r--r--include/zix/tree.h8
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