1 2 3 4 5 6 7 8 9 10 11 12
/* SPDX-License-Identifier: LGPL-2.1-only */ /* Copyright (C) 2020 Gediminas Jakutis */ #ifndef ALGOS_MERGESORT_H_INCLUDED #define ALGOS_MERGESORT_H_INCLUDED #include "defs.h" int merge_sort(struct stream * const src, struct stream * const dest); #endif /* ALGOS_MERGESORT_H_INCLUDED */