MSUStudentWork/Sorting/7Ex/quicksort.h

11 lines
187 B
C

#ifndef QUICKSORT
#define QUICKSORT
#include <stdlib.h>
#include <time.h>
#include <stdbool.h>
void quicksort(double * array, int length);
void bubble(double *arr, int length);
#endif