8 lines
186 B
C++
8 lines
186 B
C++
#pragma once
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
typedef std::vector<std::string> string_vector;
|
|
|
|
string_vector split(std::string str, const std::string& sep, bool ignore_empty=false);
|