mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-19 13:08:27 +00:00
9 lines
156 B
C++
9 lines
156 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
namespace StringUtil {
|
|
|
|
std::vector<std::string> split_string(const std::string& str, char delimiter);
|
|
|
|
} |