mirror of
https://github.com/avinal/The-VM-to-HACK-Translator.git
synced 2026-01-09 22:58:33 +05:30
14 lines
232 B
C++
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);
|
|
};
|