MCPcopy Create free account
hub / github.com/git/git / git_deflate_init_gzip

Function git_deflate_init_gzip

git-zlib.c:205–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

203}
204
205void git_deflate_init_gzip(git_zstream *strm, int level)
206{
207 /*
208 * Use default 15 bits, +16 is to generate gzip header/trailer
209 * instead of the zlib wrapper.
210 */
211 do_git_deflate_init(strm, level, 15 + 16);
212}
213
214void git_deflate_init_raw(git_zstream *strm, int level)
215{

Callers 2

write_tar_filter_archiveFunction · 0.85
post_rpcFunction · 0.85

Calls 1

do_git_deflate_initFunction · 0.85

Tested by

no test coverage detected