MCPcopy Create free account
hub / github.com/adriancable/eternal / CopyNode

Method CopyNode

doom/src/tarray.h:1010–1013  ·  view source on GitHub ↗

Perform a bit-wise copy of the node. Used when relocating a node in the table. */

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected