11 struct hashmap_entry ent;
12 struct object_id patch_id;
13 struct commit *commit;
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 */