~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/delta.h

Merge the updates to the groupcompress DeltaIndex.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 */
33
33
extern struct delta_index *
34
34
create_delta_index(const struct source_info *src,
35
 
                   const struct delta_index *old);
 
35
                   struct delta_index *old);
36
36
 
37
37
 
38
38
/*
47
47
 */
48
48
extern struct delta_index *
49
49
create_delta_index_from_delta(const struct source_info *delta,
50
 
                              const struct delta_index *old);
 
50
                              struct delta_index *old);
51
51
/*
52
52
 * free_delta_index: free the index created by create_delta_index()
53
53
 *