24 lines
527 B
C++
24 lines
527 B
C++
|
|
#include "utils.hpp"
|
|
|
|
std::vector<std::string> split(std::string input, char delimiter)
|
|
{
|
|
std::vector<std::string> answer;
|
|
std::stringstream ss(input);
|
|
std::string temp;
|
|
|
|
while (getline(ss, temp, delimiter))
|
|
answer.push_back(temp);
|
|
|
|
return answer;
|
|
}
|
|
|
|
char* itoa(int n)
|
|
{
|
|
std::stringstream strs;
|
|
|
|
strs << n;
|
|
// casts : https://stackoverflow.com/questions/332030/when-should-static-cast-dynamic-cast-const-cast-and-reinterpret-cast-be-used
|
|
return ( const_cast<char*>( strs.str().c_str() ) );
|
|
}
|