Files
kraken/include/util.h

17 lines
360 B
C
Raw Normal View History

#ifndef UTIL_H
#define UTIL_H
#ifndef NULL
#define NULL 0
#endif
2013-08-11 01:15:26 -04:00
#include <iostream>
#include <string>
#include <sstream>
std::string intToString(int theInt);
std::string truncateEnd(std::string to_truncate);
std::string removeBeginning(std::string to_remove);
2013-08-11 01:15:26 -04:00
std::string replaceExEscape(std::string first, std::string search, std::string replace);
#endif