]> git.ipfire.org Git - thirdparty/git.git/blame - patch-ids.h
t5318: avoid unnecessary command substitutions
[thirdparty/git.git] / patch-ids.h
CommitLineData
5d23e133
JH
1#ifndef PATCH_IDS_H
2#define PATCH_IDS_H
3
4struct patch_id {
dfb7a1b4 5 struct hashmap_entry ent;
34f3c0eb 6 struct object_id patch_id;
683f17ec 7 struct commit *commit;
5d23e133
JH
8};
9
10struct patch_ids {
dfb7a1b4 11 struct hashmap patches;
5d23e133 12 struct diff_options diffopts;
5d23e133
JH
13};
14
ded2c097 15int commit_patch_id(struct commit *commit, struct diff_options *options,
34f3c0eb 16 struct object_id *oid, int);
5d23e133
JH
17int init_patch_ids(struct patch_ids *);
18int free_patch_ids(struct patch_ids *);
19struct patch_id *add_commit_patch_id(struct commit *, struct patch_ids *);
20struct patch_id *has_commit_patch_id(struct commit *, struct patch_ids *);
21
22#endif /* PATCH_IDS_H */