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

Function fxDisposeParserChunks

xs/sources/xsScript.c:83–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81}
82
83void fxDisposeParserChunks(txParser* parser)
84{
85 txParserChunk** address = &parser->first;
86 txParserChunk* block;
87 while ((block = *address)) {
88 *address = block->next;
89 c_free(block);
90 }
91}
92
93void fxInitializeParser(txParser* parser, void* console, txSize bufferSize, txSize symbolModulo)
94{

Callers 1

fxTerminateParserFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected