MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / RemoveItaniumPrefix

Function RemoveItaniumPrefix

plugins/rtti/rtti.cpp:51–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49
50
51std::string RemoveItaniumPrefix(std::string &name)
52{
53 // Remove numerical prefixes.
54 while (!name.empty() && std::isdigit(name[0]))
55 name = name.substr(1);
56 return name;
57}
58
59
60std::optional<std::string> RTTI::DemangleNameItanium(BinaryView* view, bool allowMangled, const std::string &mangledName)

Callers 1

DemangleNameItaniumMethod · 0.85

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected