1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-04 09:42:40 +02:00
vcmi/include/vstd/StringUtils.h

14 lines
272 B
C
Raw Normal View History

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