github.com/Schaudge/grailbase@v0.0.0-20240223061707-44c758a471c0/compress/libdeflate/deflate_compress.h (about) 1 #ifndef LIB_DEFLATE_COMPRESS_H 2 #define LIB_DEFLATE_COMPRESS_H 3 4 #include "lib_common.h" 5 6 /* DEFLATE compression is private to deflate_compress.c, but we do need to be 7 * able to query the compression level for zlib and gzip header generation. */ 8 9 struct libdeflate_compressor; 10 11 extern unsigned int 12 deflate_get_compression_level(struct libdeflate_compressor *c); 13 14 #endif /* LIB_DEFLATE_COMPRESS_H */