deflate_compress: clean up coding style

Use a consistent comment style, consistently limit lines to 80 columns,
consistently use a blank line after declarations, and other cleanups.
This commit is contained in:
Eric Biggers 2022-01-04 21:15:30 -08:00
parent 08692b8696
commit 60f38b4598
2 changed files with 523 additions and 421 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3,8 +3,10 @@
#include "lib_common.h" #include "lib_common.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. */ * 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 libdeflate_compressor; struct libdeflate_compressor;