MCPcopy Create free account
hub / github.com/DavidColson/Polybox / MemcpyLE

Function MemcpyLE

source/serialization.cpp:171–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169// ***********************************************************************
170
171i64 MemcpyLE(u8 *dst, u8 *src, i64 len)
172{
173 for (i64 i = 0; i < len; i++) {
174 dst[i] = src[i];
175 }
176
177 return len;
178}
179
180// ***********************************************************************
181

Callers 5

CborEncodeFunction · 0.85
SerializeCborRecursiveFunction · 0.85
SerializeFunction · 0.85
ParseCborValueFunction · 0.85
DeserializeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected