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

Function BuildToolVersionToString

view/macho/machoview.cpp:127–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125
126
127static string BuildToolVersionToString(uint32_t version)
128{
129 uint32_t major = (version >> 16) & 0xffff;
130 uint32_t minor = (version >> 8) & 0xff;
131 uint32_t update = version & 0xff;
132
133 stringstream ss;
134 ss << major << "." << minor << "." << update;
135 return ss.str();
136}
137
138
139void BinaryNinja::InitMachoViewType()

Callers 1

HeaderForAddressMethod · 0.85

Calls 1

strMethod · 0.80

Tested by

no test coverage detected