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

Function MemcpyBE

source/serialization.cpp:160–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158// ***********************************************************************
159
160i64 MemcpyBE(u8 *dst, u8 *src, i64 len)
161{
162 for (i64 i = 0; i < len; i++) {
163 dst[len - i - 1] = src[i];
164 }
165
166 return len;
167}
168
169// ***********************************************************************
170

Callers 3

CborEncodeFunction · 0.85
SerializeCborRecursiveFunction · 0.85
ParseCborValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected