| 546 | } |
| 547 | |
| 548 | txNode* fxPopNode(txParser* parser) |
| 549 | { |
| 550 | txNode* node = parser->root; |
| 551 | parser->root = node->next; |
| 552 | node->next = NULL; |
| 553 | parser->nodeCount--; |
| 554 | return node; |
| 555 | } |
| 556 | |
| 557 | void fxPushNode(txParser* parser, txNode* node) |
| 558 | { |
no outgoing calls
no test coverage detected