4 #include "wimlib/compress_common.h"
6 //#define ENABLE_LZ_DEBUG
8 # define LZ_ASSERT wimlib_assert
9 # include "wimlib/assert.h"
11 # define LZ_ASSERT(...)
15 /* Raw LZ match/literal format: just a length and offset.
17 * The length is the number of bytes of the match, and the offset is the number
18 * of bytes back in the input the match is from the current position.
20 * This can alternatively be used to represent a literal byte if @len is less
21 * than the minimum match length. */
27 #endif /* _WIMLIB_LZ_H */