#ifndef QUICKSORT_H #define QUICKSORT_H //============================================================================= #include "geracao.h" //============================================================================= void quicksortRec(int *array, int esq, int dir); //============================================================================= void quicksort(int *array, int n); //============================================================================= #endif