diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-03-27 09:28:53 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-03-27 09:28:53 -0700 |
commit | e96a3b364968be19181474621169fc6906b3d9fc (patch) | |
tree | 281568a6a88afacebd19bc4065ad16a65dec8d47 /cache.h | |
parent | 4f301f70094470298cdb39d3a4d6d903326a1fdc (diff) | |
parent | c3c2e1a09b84dc932d90fa09d1632e5efa34c940 (diff) | |
download | git-e96a3b364968be19181474621169fc6906b3d9fc.tar.gz |
Merge branch 'rs/archive-zip-raw-compression'
* rs/archive-zip-raw-compression:
archive-zip: use deflateInit2() to ask for raw compressed data
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -34,6 +34,7 @@ int git_inflate(git_zstream *, int flush); void git_deflate_init(git_zstream *, int level); void git_deflate_init_gzip(git_zstream *, int level); +void git_deflate_init_raw(git_zstream *, int level); void git_deflate_end(git_zstream *); int git_deflate_abort(git_zstream *); int git_deflate_end_gently(git_zstream *); |