/*---- header file for function: swap by: Sharon Tuttle last modified: 2022-09-28 ----*/ #ifndef SWAP_H #define SWAP_H #include <string> using namespace std; void swap(string& str1, string& str2); #endif