]> wimlib.net Git - wimlib/blobdiff - src/lzx.h
Fix sequential extraction, and include progress info
[wimlib] / src / lzx.h
index b44fecffb74c0c1710923bb45b75e5699a257703..027186976b675842650c0f810067fa719e8973e9 100644 (file)
--- a/src/lzx.h
+++ b/src/lzx.h
@@ -40,7 +40,7 @@
  * read_code_lens() function and built using the make_decode_table() function.
  * The decode table is not a real tree but rather a table that we can index by
  * some number of bits (*_TABLEBITS) of the input to quickly look up the symbol
- * corresponding to a Huffman code. 
+ * corresponding to a Huffman code.
  *
  * The ALIGNED tree is only present on ALIGNED blocks.
  *
@@ -83,7 +83,7 @@ struct lru_queue {
        int R2;
 };
 
-extern int lzx_decompress(const void *compressed_data, uint compressed_len, 
+extern int lzx_decompress(const void *compressed_data, uint compressed_len,
                          void *uncompressed_data, uint uncompressed_len);
 
 extern int lzx_compress(const void *uncompressed_data, uint uncompressed_len,