MCPcopy Create free account
hub / github.com/WheretIB/nullc / AutoArrayAssignSelf

Method AutoArrayAssignSelf

NULLC/StdLib.cpp:858–864  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

856}
857
858NULLCAutoArray* NULLC::AutoArrayAssignSelf(NULLCAutoArray* left, NULLCAutoArray* right)
859{
860 left->len = right->len;
861 left->ptr = right->ptr;
862 left->typeID = right->typeID;
863 return left;
864}
865
866NULLCRef NULLC::AutoArrayIndex(NULLCAutoArray* left, unsigned int index)
867{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected