2023-01-13 22:06:13 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
2023-01-14 06:12:41 +01:00
|
|
|
std::string DemangleSymbol(const std::string& mangled);
|
2023-01-13 22:06:13 +01:00
|
|
|
|
2023-01-14 06:12:41 +01:00
|
|
|
} // namespace Common
|