Merge branch 'sg/t4051-fix'
[git.git] / patch-ids.h
blob79ac9a8498383b971107f4b30a7a75dbd30613d1
1 #ifndef PATCH_IDS_H
2 #define PATCH_IDS_H
4 #include "diff.h"
5 #include "hashmap.h"
7 struct commit;
8 struct object_id;
10 struct patch_id {
11 struct hashmap_entry ent;
12 struct object_id patch_id;
13 struct commit *commit;
16 struct patch_ids {
17 struct hashmap patches;
18 struct diff_options diffopts;
21 int commit_patch_id(struct commit *commit, struct diff_options *options,
22 struct object_id *oid, int);
23 int init_patch_ids(struct patch_ids *);
24 int free_patch_ids(struct patch_ids *);
25 struct patch_id *add_commit_patch_id(struct commit *, struct patch_ids *);
26 struct patch_id *has_commit_patch_id(struct commit *, struct patch_ids *);
28 #endif /* PATCH_IDS_H */