]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lz.h
Merge compression updates
[wimlib] / include / wimlib / lz.h
diff --git a/include/wimlib/lz.h b/include/wimlib/lz.h
deleted file mode 100644 (file)
index 7870c97..0000000
+++ /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 */