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

8 lines
292 B
C

/* This header defines the function for quick sort. */
#ifndef QUICK_SORT_H
#define QUICK_SORT_H
/* 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);
#endif /* QUICK_SORT_H */