diff options
author | 2021-02-21 13:16:54 +0200 | |
---|---|---|
committer | 2021-02-21 13:19:06 +0200 | |
commit | 29712a5098842ea3930ec00ddd1c0b9d264ba9b5 (patch) | |
tree | 3744b445acb971342be18fa6d2c9c4c20a470e1d /src/mergesort.h | |
parent | 26ab990a747ab675bcff32a40734dcb61468f652 (diff) | |
download | algos-ld1-29712a5098842ea3930ec00ddd1c0b9d264ba9b5.tar.gz algos-ld1-29712a5098842ea3930ec00ddd1c0b9d264ba9b5.tar.bz2 algos-ld1-29712a5098842ea3930ec00ddd1c0b9d264ba9b5.zip |
in-memory array sorting: GET!
lists need a bit more work and after that, in-file should shortly
follow.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'src/mergesort.h')
-rw-r--r-- | src/mergesort.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mergesort.h b/src/mergesort.h index ea66a8b..8842906 100644 --- a/src/mergesort.h +++ b/src/mergesort.h @@ -8,6 +8,5 @@ #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 */ |