sync with girocco/v2.11.4+
[git/gitweb.git] / sha1-array.h
blobb3230be0dd6eedf871c5c337a79333a7ebf33cb7
1 #ifndef SHA1_ARRAY_H
2 #define SHA1_ARRAY_H
4 struct sha1_array {
5 unsigned char (*sha1)[20];
6 int nr;
7 int alloc;
8 int sorted;
9 };
11 #define SHA1_ARRAY_INIT { NULL, 0, 0, 0 }
13 void sha1_array_append(struct sha1_array *array, const unsigned char *sha1);
14 int sha1_array_lookup(struct sha1_array *array, const unsigned char *sha1);
15 void sha1_array_clear(struct sha1_array *array);
17 typedef int (*for_each_sha1_fn)(const unsigned char sha1[20],
18 void *data);
19 int sha1_array_for_each_unique(struct sha1_array *array,
20 for_each_sha1_fn fn,
21 void *data);
23 #endif /* SHA1_ARRAY_H */