summaryrefslogtreecommitdiff
path: root/src/utils/split.hpp
blob: 3755ef8cdedd46ba3cf3e4f06e118ee4e85eabf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once


#include <string>
#include <vector>

namespace utils
{
  std::vector<std::string> split(const std::string &s, const char delim, const bool allow_empty=true);
}