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

Function fxGetLinkerCallbackByName

xs/tools/xslBase.c:196–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194}
195
196txLinkerCallback* fxGetLinkerCallbackByName(txLinker* linker, txString name)
197{
198 txLinkerCallback* linkerCallback = linker->firstCallback;
199 while (linkerCallback) {
200 if (!c_strcmp(linkerCallback->name, name))
201 return linkerCallback;
202 linkerCallback = linkerCallback->nextCallback;
203 }
204 return NULL;
205}
206
207void fxInitializeLinker(txLinker* linker)
208{

Callers 1

fxStripNameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected