MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / zmemcpy

Function zmemcpy

extlibs/minizip/src/zutil.c:162–171  ·  view source on GitHub ↗
(dest, source, len)

Source from the content-addressed store, hash-verified

160#ifndef HAVE_MEMCPY
161
162void ZLIB_INTERNAL zmemcpy(dest, source, len)
163 Bytef* dest;
164 const Bytef* source;
165 uInt len;
166{
167 if (len == 0) return;
168 do {
169 *dest++ = *source++; /* ??? to be unrolled */
170 } while (--len != 0);
171}
172
173int ZLIB_INTERNAL zmemcmp(s1, s2, len)
174 const Bytef* s1;

Callers 11

inflateBackFunction · 0.85
_tr_stored_blockFunction · 0.85
updatewindowFunction · 0.85
inflate.cFile · 0.85
deflateGetDictionaryFunction · 0.85
flush_pendingFunction · 0.85
deflateFunction · 0.85
deflateCopyFunction · 0.85
read_bufFunction · 0.85
fill_windowFunction · 0.85
deflate_storedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected