MCPcopy 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
172void 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.cFile · 0.85
fill_windowFunction · 0.85
deflateInit2_Function · 0.85
deflateCopyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected