10 lines
244 B
C++
10 lines
244 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
|
|
namespace misc {
|
|
std::vector<std::string> string_expand(const std::string& input, char delimiter = ' ');
|
|
bool string_matches(const std::string& x, const std::vector<std::string>& v);
|
|
} |