#ifndef sorting_h #define sorting_h long * Load_File(char *Filename, int *Size); int Save_File(char *Filename, long *Array, int Size); void Shell_Insertion_Sort(long *Array, int Size, double *N_Comp, double *N_Move); void Shell_Selection_Sort(long *Array, int Size, double *N_Comp, double *N_Move); int * genSequence(int maxVal); int Print_Seq(char *Filename, int Size); int pow(int base, int exponent); #endif