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

10 lines
451 B
C
Raw Normal View History

/* This header defines the functions for merge sort. */
#ifndef QUICK_SORT_H
#define QUICK_SORT_H
#include <aio.h>
/* This is the standard (<) comparison function. */
int standard_compare_quick_sort(const void* first, const void* second);
/* The quicksort function's definition. */
void** quick_sort(void** array, int (*comparison_function)(const void*, const void*), const size_t length, const size_t size, const int copy);
#endif /* QUICK_SORT_H */