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
|