Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
 header file for function swap
   created by smtuttle at Mon Apr 26 14:29:10 PDT 2010
--------------------------------------------------*/
#ifndef swap_H
#define swap_H

#include <string>
using namespace std;

void swap(int& value1, int& value2);

#endif