| 81 | } |
| 82 | |
| 83 | void 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 | |
| 93 | void fxInitializeParser(txParser* parser, void* console, txSize bufferSize, txSize symbolModulo) |
| 94 | { |