Convert sha1_array_for_each_unique and for_each_abbrev to object_id
[git] / sha1-array.h
1 #ifndef SHA1_ARRAY_H
2 #define SHA1_ARRAY_H
3
4 struct sha1_array {
5         struct object_id *oid;
6         int nr;
7         int alloc;
8         int sorted;
9 };
10
11 #define SHA1_ARRAY_INIT { NULL, 0, 0, 0 }
12
13 void sha1_array_append(struct sha1_array *array, const struct object_id *oid);
14 int sha1_array_lookup(struct sha1_array *array, const struct object_id *oid);
15 void sha1_array_clear(struct sha1_array *array);
16
17 typedef int (*for_each_oid_fn)(const struct object_id *oid,
18                                void *data);
19 int sha1_array_for_each_unique(struct sha1_array *array,
20                                for_each_oid_fn fn,
21                                void *data);
22
23 #endif /* SHA1_ARRAY_H */