libdeflate/lib/deflate_compress.h
Eric Biggers f2c3a5b4e9 Various reorganization and cleanups
* Bring in common headers and program code from xpack project
* Move program code to programs/
* Move library code to lib/
* GNU89 and MSVC2010 compatibility
* Other changes
2016-05-21 15:38:15 -05:00

12 lines
371 B
C

#ifndef _LIB_DEFLATE_COMPRESS_H
#define _LIB_DEFLATE_COMPRESS_H
/* DEFLATE compression is private to deflate_compress.c, but we do need to be
* able to query the compression level for zlib and gzip header generation. */
struct deflate_compressor;
extern unsigned int deflate_get_compression_level(struct deflate_compressor *c);
#endif /* _LIB_DEFLATE_COMPRESS_H */