From 6651d4dbf74dc4591fbaf5250bfd6f7d58ce0363 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 18 Sep 2011 18:53:59 +0000 Subject: Tidy. git-svn-id: http://svn.drobilla.net/zix/trunk@14 df6676b4-ccc9-40e5-b5d6-7c4628a128e3 --- zix/sorted_array.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'zix') diff --git a/zix/sorted_array.h b/zix/sorted_array.h index 355bdf2..da3a1d4 100644 --- a/zix/sorted_array.h +++ b/zix/sorted_array.h @@ -65,7 +65,9 @@ zix_sorted_array_size(ZixSortedArray* a); Insert the element @a e into @a a and point @a ai at the new element. */ ZixStatus -zix_sorted_array_insert(ZixSortedArray* a, const void* e, ZixSortedArrayIter* ai); +zix_sorted_array_insert(ZixSortedArray* a, + const void* e, + ZixSortedArrayIter* ai); /** Remove the item pointed at by @a ai from @a a. @@ -78,7 +80,9 @@ zix_sorted_array_remove(ZixSortedArray* a, ZixSortedArrayIter ai); If no such item exists, @a ai is set to NULL. */ ZixStatus -zix_sorted_array_find(const ZixSortedArray* a, const void* e, ZixSortedArrayIter* ai); +zix_sorted_array_find(const ZixSortedArray* a, + const void* e, + ZixSortedArrayIter* ai); void* zix_sorted_array_index(const ZixSortedArray* a, size_t index); -- cgit v1.2.1