#ifndef QUICKSORT_H_ #define QUICKSORT_H_ void quick_sort_part(int arr[], int low, int high) ; void quick_sort(int * arr, int a_length); #endif /* QUICKSORT_H_ */