]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lz_bt.h
Rename raw_match => lz_match
[wimlib] / include / wimlib / lz_bt.h
index cc9ed5d3a11c2d2127ef29ff34b4324c05ae553c..6ce525ae13cdf8f9241f701982eaca5b7186a010 100644 (file)
@@ -6,7 +6,7 @@
  * Author:  Eric Biggers
  * Year:    2014
  *
- * The author hereby releases this file into the public domain.
+ * The author dedicates this file to the public domain.
  * You can do whatever you want with this file.
  */
 
@@ -37,7 +37,7 @@ struct lz_bt {
        u32 max_search_depth;
 };
 
-struct raw_match;
+struct lz_match;
 
 extern u64
 lz_bt_get_needed_memory(lz_bt_pos_t max_window_size);
@@ -54,7 +54,7 @@ extern void
 lz_bt_load_window(struct lz_bt *mf, const u8 *window, lz_bt_pos_t window_size);
 
 extern lz_bt_len_t
-lz_bt_get_matches(struct lz_bt *mf, struct raw_match *matches);
+lz_bt_get_matches(struct lz_bt *mf, struct lz_match *matches);
 
 static inline lz_bt_pos_t
 lz_bt_get_position(const struct lz_bt *mf)