]> wimlib.net Git - wimlib/blobdiff - src/lzx_common.c
lzx_common: rename to lzx_preprocess/lzx_postprocess
[wimlib] / src / lzx_common.c
index 6eab2031f24930187bbf3ef8b70fe76525be9d5c..0677e0a0d40693a37888c431b521771621ad60e1 100644 (file)
@@ -323,13 +323,13 @@ lzx_e8_filter(u8 *data, u32 size, void (*process_target)(void *, s32))
 }
 
 void
-lzx_do_e8_preprocessing(u8 *data, u32 size)
+lzx_preprocess(u8 *data, u32 size)
 {
        lzx_e8_filter(data, size, do_translate_target);
 }
 
 void
-lzx_undo_e8_preprocessing(u8 *data, u32 size)
+lzx_postprocess(u8 *data, u32 size)
 {
        lzx_e8_filter(data, size, undo_translate_target);
 }