]> wimlib.net Git - wimlib/blobdiff - src/lz_hash.c
Separate suffix array match-finder from LZX compressor
[wimlib] / src / lz_hash.c
similarity index 99%
rename from src/lz77.c
rename to src/lz_hash.c
index b5495da74d1599cd59e12cc8ef65c495550eba55..ac469f202e2f3bdfa0cfbd717b49e31a333377f7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * lz77.c
+ * lz_hash.c
  *
  * This file provides the code to analyze a buffer of uncompressed data for
  * matches, as per the LZ77 algorithm.  It uses a hash table to accelerate the
@@ -30,7 +30,7 @@
 #  include <config.h>
 #endif
 
-#include "wimlib/compress_common.h"
+#include "wimlib/lz_hash.h"
 #include "wimlib/util.h"
 
 #include <string.h>