Files
vcmi/include/vstd/StringUtils.h
T

14 lines
286 B
C++
Raw Normal View History

2018-10-29 16:30:50 +01:00
#pragma once
VCMI_LIB_NAMESPACE_BEGIN
namespace vstd
{
DLL_LINKAGE std::vector<std::string> split(std::string s, const std::string& separators);
DLL_LINKAGE std::pair<std::string, std::string> splitStringToPair(const std::string& input, char separator);
}
VCMI_LIB_NAMESPACE_END