shadPS4/src/common/string_util.h

15 lines
330 B
C
Raw Normal View History

2024-02-23 22:32:32 +01:00
// SPDX-FileCopyrightText: 2013 Dolphin Emulator Project
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
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