2023-01-13 16:06:13 -05: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 00:12:41 -05:00
|
|
|
std::string DemangleSymbol(const std::string& mangled);
|
2023-01-13 16:06:13 -05:00
|
|
|
|
2023-01-14 00:12:41 -05:00
|
|
|
} // namespace Common
|