Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ObEngine/ObEngine
/ zmemzero
Function
zmemzero
extlibs/minizip/src/zutil.c:186–194 ·
view source on GitHub ↗
(dest, len)
Source
from the content-addressed store, hash-verified
184
}
185
186
void ZLIB_INTERNAL zmemzero(dest, len)
187
Bytef* dest;
188
uInt len;
189
{
190
if (len == 0) return;
191
do {
192
*dest++ = 0; /* ??? to be unrolled */
193
} while (--len != 0);
194
}
195
#endif
196
197
#ifndef Z_SOLO
Callers
1
fill_window
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected