#ifndef __QUICKSORT__ #define __QUICKSORT__ void swap(int *a, int *b); int partition(int arr[], int low, int high); void quickshort(int arr[], int low, int high); #endif