#include #include "StringUtils.h" using namespace std; void Swap(string & a, string & b) { string tmp; tmp = a; a = b; b = tmp; return; } void Sort(string array[], size_t size){ size_t i,j, smallPos; cout << "In the sort routine " << endl; for(i=0;i