14 lines
198 B
C++
14 lines
198 B
C++
|
|
#ifndef UTILS_HPP
|
|
# define UTILS_HPP
|
|
|
|
# include <string>
|
|
# include <sstream>
|
|
# include <vector>
|
|
|
|
std::vector<std::string> split(std::string input, char delimiter);
|
|
char* itoa(int n);
|
|
|
|
#endif
|
|
|