1#ifndef MERGESORT_H 2#define MERGESORT_H 3 4void *mergesort(void *list, 5 void *(*get_next_fn)(const void *), 6 void (*set_next_fn)(void *, void *), 7 int (*compare_fn)(const void *, const void *)); 8 9#endif
#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