Files
The-VM-to-HACK-Translator/include/vutility.hpp
2020-08-21 19:08:04 +05:30

14 lines
232 B
C++

#include <vector>
#include <string>
#include <sstream>
class vutility
{
private:
vutility() {}
public:
static std::vector<std::string> split(std::string str, char delimit);
static std::string trim(std::string str);
};