Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MariaDB/server
/ zmemzero
Function
zmemzero
zlib/zutil.c:172–179 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
170
}
171
172
void ZLIB_INTERNAL zmemzero(void FAR *b, z_size_t len) {
173
uchf *p = b;
174
if (len == 0) return;
175
while (len) {
176
*p++ = 0;
177
len--;
178
}
179
}
180
181
#endif
182
Callers
5
inflateInit2_
Function · 0.85
inflate.c
File · 0.85
fill_window
Function · 0.85
deflateInit2_
Function · 0.85
deflateCopy
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected