MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / hex2int

Function hex2int

gui/qt/utils.cpp:54–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52}
53
54int hex2int(const QString &str) {
55 return static_cast<int>(strtol(str.toStdString().c_str(), nullptr, 16));
56}
57
58QString int2hex(uint32_t a, uint8_t l) {
59 return QString::number(a, 16).rightJustified(l, '0', true).toUpper();

Callers 15

getAddressStringMethod · 0.85
flashGotoPressedMethod · 0.85
ramGotoPressedMethod · 0.85
memGotoEditMethod · 0.85
contextDisasmMethod · 0.85
contextConsoleMethod · 0.85
showConfigMethod · 0.85
debugImportFileMethod · 0.85
debugCommandMethod · 0.85
debugSyncMethod · 0.85
breakRemoveRowMethod · 0.85
breakRemoveMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected