// File: sorts.H // // Function prototype for all sorts of sorting functions #ifndef SORTS_H #define SORTS_H #include "insertionsort.cpp" #include "selectionsort.cpp" #include "quicksort.cpp" #include "mergesort2.cpp" #endif