MCPcopy Create free account
hub / github.com/F-Stack/f-stack / zmemzero

Function zmemzero

freebsd/contrib/zlib/zutil.c:173–181  ·  view source on GitHub ↗
(dest, len)

Source from the content-addressed store, hash-verified

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

Callers 1

fill_windowFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected