| 586 | } |
| 587 | |
| 588 | void NULLC::CopyArray(NULLCAutoArray* dst, NULLCAutoArray src) |
| 589 | { |
| 590 | dst->typeID = src.typeID; |
| 591 | dst->len = src.len; |
| 592 | dst->ptr = (char*)NULLC::AllocObject(src.len * linker->exTypes[src.typeID].size); |
| 593 | memcpy(dst->ptr, src.ptr, src.len * linker->exTypes[src.typeID].size); |
| 594 | } |
| 595 | |
| 596 | NULLCRef NULLC::ReplaceObject(NULLCRef l, NULLCRef r) |
| 597 | { |
nothing calls this directly
no outgoing calls
no test coverage detected