diff options
author | 2021-02-17 08:57:56 +0200 | |
---|---|---|
committer | 2021-02-17 08:57:56 +0200 | |
commit | 26ab990a747ab675bcff32a40734dcb61468f652 (patch) | |
tree | ef820c67202a3fb97ff4b2ae5df7caf347403b58 /src/mergesort.h | |
parent | e5a7592b606f6e75981fd48b32b3593a1d7c7f77 (diff) | |
download | algos-ld1-26ab990a747ab675bcff32a40734dcb61468f652.tar.gz algos-ld1-26ab990a747ab675bcff32a40734dcb61468f652.tar.bz2 algos-ld1-26ab990a747ab675bcff32a40734dcb61468f652.zip |
Most of sorting an array in memory is wired up.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'src/mergesort.h')
-rw-r--r-- | src/mergesort.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 */ |