]> git.ipfire.org Git - thirdparty/git.git/blame - patch-ids.h
patch-ids: stop using a hand-rolled hashmap implementation
[thirdparty/git.git] / patch-ids.h
CommitLineData
5d23e133
JH
1#ifndef PATCH_IDS_H
2#define PATCH_IDS_H
3
4struct patch_id {
dfb7a1b4
KW
5 struct hashmap_entry ent;
6 unsigned char patch_id[GIT_SHA1_RAWSZ];
5d23e133
JH
7 char seen;
8};
9
10struct patch_ids {
dfb7a1b4 11 struct hashmap patches;
5d23e133 12 struct diff_options diffopts;
5d23e133
JH
13};
14
ded2c097
XY
15int commit_patch_id(struct commit *commit, struct diff_options *options,
16 unsigned char *sha1);
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 */