#ifndef __QUICKSORT__ #define __QUICKSORT__ int Partition(int * array, int lo, int hi); void quicksort(int * array, int lo, int hi); #endif