| 738 | } |
| 739 | |
| 740 | txHostNode* fxHostNodeClone(txParser* parser, txHostNode* self) |
| 741 | { |
| 742 | txHostNode* node = fxNewParserChunkClear(parser, sizeof(txHostNode)); |
| 743 | c_memcpy(node, self, sizeof(txHostNode)); |
| 744 | return node; |
| 745 | } |
| 746 | |
| 747 | void fxHostNodeHoist(void* it, void* param) |
| 748 | { |
no test coverage detected