MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / zmemcpy

Function zmemcpy

ZLib/zutil.c:152–161  ·  view source on GitHub ↗
(dest, source, len)

Source from the content-addressed store, hash-verified

150#ifndef HAVE_MEMCPY
151
152void ZLIB_INTERNAL zmemcpy(dest, source, len)
153 Bytef* dest;
154 const Bytef* source;
155 uInt len;
156{
157 if (len == 0) return;
158 do {
159 *dest++ = *source++; /* ??? to be unrolled */
160 } while (--len != 0);
161}
162
163int ZLIB_INTERNAL zmemcmp(s1, s2, len)
164 const Bytef* s1;

Callers 7

inflateBackFunction · 0.85
updatewindowFunction · 0.85
inflate.cFile · 0.85
flush_pendingFunction · 0.85
deflateCopyFunction · 0.85
read_bufFunction · 0.85
fill_windowFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected