зеркало из https://github.com/microsoft/git.git
10 строки
204 B
C
10 строки
204 B
C
|
#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
|