MCPcopy Create free account
hub / github.com/Norbyte/ositools / IsFixedStringRef

Method IsFixedStringRef

OsiInterface/DataLibraries.cpp:160–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158 }
159
160 bool LibraryManager::IsFixedStringRef(uint8_t const * ref, char const * str) const
161 {
162 if (ref >= moduleStart_ && ref < moduleStart_ + moduleSize_) {
163 auto fsx = (FixedString const *)ref;
164 if (*fsx && strcmp(fsx->Str, str) == 0) {
165 return true;
166 }
167 }
168
169 return false;
170 }
171
172 uint8_t const * AsmCallToAbsoluteAddress(uint8_t const * call)
173 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected