Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mergesort.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6e5f4a73268e1753c8578a7b153f7d818484078 (plain)
1
2
3
4
5
6
7
8
9
#ifndef MERGESORT_H
#define MERGESORT_H

void *mergesort(void *list,
		void *(*get_next_fn)(const void *),
		void (*set_next_fn)(void *, void *),
		int (*compare_fn)(const void *, const void *));

#endif