summaryrefslogtreecommitdiffstats
path: root/src/sorted_array.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sorted_array.c')
-rw-r--r--src/sorted_array.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/sorted_array.c b/src/sorted_array.c
index e41797d..e841380 100644
--- a/src/sorted_array.c
+++ b/src/sorted_array.c
@@ -81,7 +81,9 @@ zix_sorted_array_size(ZixSortedArray* a)
ZIX_API
ZixStatus
-zix_sorted_array_insert(ZixSortedArray* a, const void* e, ZixSortedArrayIter* ai)
+zix_sorted_array_insert(ZixSortedArray* a,
+ const void* e,
+ ZixSortedArrayIter* ai)
{
if (a->num_elems == 0) {
assert(!a->array);
@@ -140,7 +142,9 @@ zix_sorted_array_index(const ZixSortedArray* a, size_t index)
ZIX_API
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)
{
if (a->num_elems == 0) {
*ai = NULL;