shadPS4/src/common/string_util.h

11 lines
172 B
C
Raw Normal View History

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