Perform a bit-wise copy of the node. Used when relocating a node in the table. */
| 1008 | |
| 1009 | /* Perform a bit-wise copy of the node. Used when relocating a node in the table. */ |
| 1010 | void CopyNode(Node *dst, const Node *src) |
| 1011 | { |
| 1012 | *(NodeSizedStruct *)dst = *(const NodeSizedStruct *)src; |
| 1013 | } |
| 1014 | |
| 1015 | /* Copy all nodes in the node vector to this table. */ |
| 1016 | void CopyNodes(const Node *nodes, hash_t numnodes) |
nothing calls this directly
no outgoing calls
no test coverage detected