11 lines
117 B
C++
11 lines
117 B
C++
|
|
|
|
|
|
#ifndef UTILS_HPP
|
|
# define UTILS_HPP
|
|
|
|
|
|
std::vector<std::string> split(std::string input, char delimiter);
|
|
|
|
#endif
|