MCPcopy Create free account
hub / github.com/WallBreaker2/op / address_has_operator

Function address_has_operator

libop/memory/ProcessMemory.cpp:77–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77bool address_has_operator(const wstring &address) {
78 for (wchar_t c : address) {
79 if (c == L'+' || c == L'-' || c == L'*' || c == L'/')
80 return true;
81 }
82 return false;
83}
84
85size_t parse_hex_word(const wstring &num) {
86 if (num.empty())

Callers 1

str2addressMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected