MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxGetLinkerCallbackByAddress

Function fxGetLinkerCallbackByAddress

xs/tools/xslBase.c:185–194  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

183}
184
185txLinkerCallback* fxGetLinkerCallbackByAddress(txLinker* linker, txCallback which)
186{
187 txLinkerCallback* linkerCallback = linker->firstCallback;
188 while (linkerCallback) {
189 if (linkerCallback->callback == which)
190 return linkerCallback;
191 linkerCallback = linkerCallback->nextCallback;
192 }
193 return NULL;
194}
195
196txLinkerCallback* fxGetLinkerCallbackByName(txLinker* linker, txString name)
197{

Callers 4

fxGetCallbackNameFunction · 0.85
fxIsCallbackStrippedFunction · 0.85
fxStripCallbackFunction · 0.85
fxUnstripCallbackFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected