Files
kraken/include/util.h
2014-01-07 21:31:56 -05:00

18 lines
360 B
C++

#ifndef UTIL_H
#define UTIL_H
#ifndef NULL
#define NULL 0
#endif
#include <iostream>
#include <string>
#include <sstream>
std::string intToString(int theInt);
std::string replaceExEscape(std::string first, std::string search, std::string replace);
std::string strSlice(std::string str, int begin, int end);
int findPerenEnd(std::string str, int i);
#endif