Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Meituan-Dianping/SQLAdvisor
/ zmemzero
Function
zmemzero
zlib/zutil.c:173–181 ·
view source on GitHub ↗
(dest, len)
Source
from the content-addressed store, hash-verified
171
}
172
173
void 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
Callers
1
ZEXPORT
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected