// utils.cpp - C++ Implementation File #include #include using namespace std; #include "conio.h" void wait( ) { cout << "Press any key..."; getch( ); cout << endl; } void ToUpperCase( string & s ) { for( unsigned i = 0; i < s.size( ); i++ ) s[i] = toupper( s[i] ); }