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

Function HexToDec

demangler/gnu3/demangle_gnu3.cpp:731–742  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

729}
730
731static int8_t HexToDec(char c)
732{
733 if (isdigit(c))
734 {
735 return c - '0';
736 }
737 else if(islower(c) && c <= 'f')
738 {
739 return c - 'a' + 10;
740 }
741 return -1;
742}
743
744string DemangleGNU3::DemanglePrimaryExpression()
745{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected