mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-08-04 18:27:27 -04:00

* 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
12 lines
371 B
C
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 */
|