shadPS4/src/common/string_util.h

9 lines
156 B
C
Raw Normal View History

2023-06-18 16:54:22 +02:00
#pragma once
#include <vector>
#include <string>
namespace StringUtil {
std::vector<std::string> split_string(const std::string& str, char delimiter);
2023-06-18 16:54:22 +02:00
}