#ifndef QUICKSORT_H #define QUICKSORT_H void quicksort(int* array, int left, int right); #endif