mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-26 08:21:41 +00:00
11 lines
172 B
C++
11 lines
172 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
namespace Common {
|
|
|
|
std::vector<std::string> SplitString(const std::string& str, char delimiter);
|
|
|
|
} // namespace Common
|