X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Flz.h;fp=include%2Fwimlib%2Flz.h;h=0000000000000000000000000000000000000000;hb=4dd45340f9fe3a533e0f1a9d6b79f8118e45ca2a;hp=7870c9725db1e5440b00abd2a59c8d810813eaff;hpb=f957cacefa8b7b14544d27ba8519dae94e96c9f7;p=wimlib diff --git a/include/wimlib/lz.h b/include/wimlib/lz.h deleted file mode 100644 index 7870c972..00000000 --- a/include/wimlib/lz.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef _WIMLIB_LZ_H -#define _WIMLIB_LZ_H - -#include "wimlib/compress_common.h" - -//#define ENABLE_LZ_DEBUG -#ifdef ENABLE_LZ_DEBUG -# define LZ_ASSERT wimlib_assert -# include "wimlib/assert.h" -#else -# define LZ_ASSERT(...) -#endif - - -/* Raw LZ match/literal format: just a length and offset. - * - * The length is the number of bytes of the match, and the offset is the number - * of bytes back in the input the match is from the current position. - * - * This can alternatively be used to represent a literal byte if @len is less - * than the minimum match length. */ -struct lz_match { - u32 len; - u32 offset; -}; - -#endif /* _WIMLIB_LZ_H */