From 26ab990a747ab675bcff32a40734dcb61468f652 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Wed, 17 Feb 2021 08:57:56 +0200 Subject: Most of sorting an array in memory is wired up. Signed-off-by: Gediminas Jakutis --- src/mergesort.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/mergesort.h') diff --git a/src/mergesort.h b/src/mergesort.h index 8ac3ab5..ea66a8b 100644 --- a/src/mergesort.h +++ b/src/mergesort.h @@ -7,6 +7,7 @@ #include "defs.h" +int merge_sort(struct stream * const src, struct stream * const dest); int merge(struct stream * const dest, struct stream * const A, struct stream * const B); #endif /* ALGOS_MERGESORT_H_INCLUDED */ -- cgit v1.2.3