Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
 header file for function swap
   modified by st10 on 12-3-10
--------------------------------------------------*/
#ifndef swap_H
#define swap_H

#include <string>
using namespace std;

void swap(int& val1, int& val2);

#endif