1
0
Fork 0
C_lib/sorting_algorithms/merge_sort/merge_sort.h

7 lines
311 B
C

/* This header defines the functions for merge sort. */
#ifndef MERGE_SORT_H
#define MERGE_SORT_H
/* The merge sort function's definition. */
void** merge_sort(void** array, int (*comparison_function)(const void*, const void*), const size_t length, const size_t size, const int copy);
#endif /* MERGE_SORT_H */