Jeff King | 902bb36 | 2011-05-19 17:34:33 -0400 | [diff] [blame] | 1 | #ifndef SHA1_ARRAY_H |
| 2 | #define SHA1_ARRAY_H |
| 3 | |
| 4 | struct sha1_array { |
| 5 | unsigned char (*sha1)[20]; |
| 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 unsigned char *sha1); |
Jeff King | 902bb36 | 2011-05-19 17:34:33 -0400 | [diff] [blame] | 14 | int sha1_array_lookup(struct sha1_array *array, const unsigned char *sha1); |
| 15 | void sha1_array_clear(struct sha1_array *array); |
| 16 | |
Jeff King | cff38a5 | 2011-05-19 17:34:46 -0400 | [diff] [blame] | 17 | typedef void (*for_each_sha1_fn)(const unsigned char sha1[20], |
| 18 | void *data); |
| 19 | void sha1_array_for_each_unique(struct sha1_array *array, |
| 20 | for_each_sha1_fn fn, |
| 21 | void *data); |
| 22 | |
Jeff King | 902bb36 | 2011-05-19 17:34:33 -0400 | [diff] [blame] | 23 | #endif /* SHA1_ARRAY_H */ |