15 lines
250 B
C++
15 lines
250 B
C++
|
|
#ifndef UTILS_HPP
|
|
# define UTILS_HPP
|
|
|
|
# include <string>
|
|
# include <sstream>
|
|
# include <vector>
|
|
|
|
std::vector<std::string> split(std::string input, char delimiter);
|
|
std::string itos(int n);
|
|
std::string trim(std::string str, char c);
|
|
|
|
#endif
|
|
|