9 lines
123 B
C++
9 lines
123 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace hex::plugin::builtin {
|
||
|
|
||
|
std::string demangle(const std::string &mangled);
|
||
|
|
||
|
}
|