#ifndef QUICKSORT_H #define QUICKSORT_H void quicksort(int* array, int low, int high); #endif