/********************************************************************************************
sorttool.h
    Jim Millard
    for CO311

header for sorting utility functions

********************************************************************************************/
#ifndef __SORTTOOL_H
#define __SORTTOOL_H

void FillWithRand(int [], const int size, const int used);
void ParseAndPrint(int [], const int size, const int used);
void Swap(int&, int&);

#endif