pineapple-src/src/common/demangle.h
2023-01-22 20:58:50 +01:00

12 lines
242 B
C++
Executable file

// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <string>
namespace Common {
std::string DemangleSymbol(const std::string& mangled);
} // namespace Common