#ifndef STRINGUTIL_H #define STRINGUTIL_H #include #include using namespace std; void getline( istream& is, string& s, char d='\n' ); string newStrtok(string currString, string seps ); #endif