blob: 8ac3ab532ec674201f237c464918c6d4d8baf1c7 (
plain)
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(struct stream * const dest, struct stream * const A, struct stream * const B);
#endif /* ALGOS_MERGESORT_H_INCLUDED */
|