#ifndef UTIL_H #define UTIL_H #ifndef NULL #define NULL 0 #endif #include #include #include std::string intToString(int theInt); std::string replaceExEscape(std::string first, std::string search, std::string replace); #endif