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

Function zmemzero

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

Source from the content-addressed store, hash-verified

174}
175
176void ZLIB_INTERNAL zmemzero(dest, len)
177 Bytef* dest;
178 uInt len;
179{
180 if (len == 0) return;
181 do {
182 *dest++ = 0; /* ??? to be unrolled */
183 } while (--len != 0);
184}
185#endif
186
187#ifndef Z_SOLO

Callers 1

fill_windowFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected