13 lines
176 B
C++

#ifndef UTILS_H
#define UTILS_H
#include <vector>
#include <string>
namespace utils
{
std::vector<std::string> split(const std::string &line, char sep);
}
#endif // UTILS_H