| 692 | } |
| 693 | |
| 694 | void fxSwapNodes(txParser* parser) |
| 695 | { |
| 696 | txNode* previous = parser->root; |
| 697 | txNode* current = previous->next; |
| 698 | previous->next = current->next; |
| 699 | current->next = previous; |
| 700 | parser->root = current; |
| 701 | } |
| 702 | |
| 703 | void fxModule(txParser* parser) |
| 704 | { |
no outgoing calls
no test coverage detected