diff options
Diffstat (limited to 'xdelta3/xdelta3.h')
-rw-r--r-- | xdelta3/xdelta3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xdelta3/xdelta3.h b/xdelta3/xdelta3.h index 4d04b49..9b009f1 100644 --- a/xdelta3/xdelta3.h +++ b/xdelta3/xdelta3.h | |||
@@ -1159,13 +1159,13 @@ int xd3_decoder_needs_source (xd3_stream *stream); | |||
1159 | /* To generate a VCDIFF encoded delta with xd3_encode_init() from | 1159 | /* To generate a VCDIFF encoded delta with xd3_encode_init() from |
1160 | * another format, use: | 1160 | * another format, use: |
1161 | * | 1161 | * |
1162 | * xd3_encode_init() -- initialze encoder state | 1162 | * xd3_encode_init_partial() -- initialze encoder state (w/o hash tables) |
1163 | * xd3_init_cache() -- reset VCDIFF address cache | 1163 | * xd3_init_cache() -- reset VCDIFF address cache |
1164 | * xd3_found_match() -- to report a copy instruction | 1164 | * xd3_found_match() -- to report a copy instruction |
1165 | * | 1165 | * |
1166 | * set stream->enc_state to ENC_INSTR and call xd3_encode_input as usual. | 1166 | * set stream->enc_state to ENC_INSTR and call xd3_encode_input as usual. |
1167 | */ | 1167 | */ |
1168 | int xd3_encode_init (xd3_stream *stream); | 1168 | int xd3_encode_init_partial (xd3_stream *stream); |
1169 | void xd3_init_cache (xd3_addr_cache* acache); | 1169 | void xd3_init_cache (xd3_addr_cache* acache); |
1170 | int xd3_found_match (xd3_stream *stream, | 1170 | int xd3_found_match (xd3_stream *stream, |
1171 | usize_t pos, usize_t size, | 1171 | usize_t pos, usize_t size, |