]> git.ipfire.org Git - thirdparty/git.git/blobdiff - cache.h
Merge branch 'lt/maint-wrap-zlib'
[thirdparty/git.git] / cache.h
diff --git a/cache.h b/cache.h
index 8e1af2669bd2e9af03a73b7058bec014d4d3a3aa..8d965b8c981d80a252dd69ca32d8e44fa545177a 100644 (file)
--- a/cache.h
+++ b/cache.h
 #define deflateBound(c,s)  ((s) + (((s) + 7) >> 3) + (((s) + 63) >> 6) + 11)
 #endif
 
+void git_inflate_init(z_streamp strm);
+void git_inflate_end(z_streamp strm);
+int git_inflate(z_streamp strm, int flush);
+
 #if defined(DT_UNKNOWN) && !defined(NO_D_TYPE_IN_DIRENT)
 #define DTYPE(de)      ((de)->d_type)
 #else