diff options
author | josh.macdonald <jmacd@users.noreply.github.com> | 2008-03-31 03:03:24 +0000 |
---|---|---|
committer | josh.macdonald <jmacd@users.noreply.github.com> | 2008-03-31 03:03:24 +0000 |
commit | 0536aa91d51b43afd52d4cf08ac50baa28511ca1 (patch) | |
tree | 4ab3cee8fd5669c336f876235682f9d5cd803c33 /xdelta3/xdelta3.h | |
parent | 81d864ca9a4c5bf24526c16d2c9387610ebc0973 (diff) |
Implement more of "xdelta3 merge" command. Compile fixes.
Work on xdelta3-regtest.py.
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, |