]> git.ipfire.org Git - thirdparty/git.git/blame - delta-islands.h
.gitignore: ignore external debug symbols from GCC on macOS
[thirdparty/git.git] / delta-islands.h
CommitLineData
c8d521fa
JK
1#ifndef DELTA_ISLANDS_H
2#define DELTA_ISLANDS_H
3
9ce4d21a
RJ
4struct object_id;
5struct packing_data;
6struct commit;
7
c8d521fa
JK
8int island_delta_cmp(const struct object_id *a, const struct object_id *b);
9int in_same_island(const struct object_id *, const struct object_id *);
10void resolve_tree_islands(int progress, struct packing_data *to_pack);
11void load_delta_islands(void);
12void propagate_island_marks(struct commit *commit);
13int compute_pack_layers(struct packing_data *to_pack);
14
15#endif /* DELTA_ISLANDS_H */