execv_dashed_external: wait for child on signal death
[gitweb.git] / sha1-array.h
index 15d3b6b984f37735686a63eeb4eb64e7d95cb3d2..b3230be0dd6eedf871c5c337a79333a7ebf33cb7 100644 (file)
@@ -11,8 +11,13 @@ struct sha1_array {
 #define SHA1_ARRAY_INIT { NULL, 0, 0, 0 }
 
 void sha1_array_append(struct sha1_array *array, const unsigned char *sha1);
-void sha1_array_sort(struct sha1_array *array);
 int sha1_array_lookup(struct sha1_array *array, const unsigned char *sha1);
 void sha1_array_clear(struct sha1_array *array);
 
+typedef int (*for_each_sha1_fn)(const unsigned char sha1[20],
+                               void *data);
+int sha1_array_for_each_unique(struct sha1_array *array,
+                              for_each_sha1_fn fn,
+                              void *data);
+
 #endif /* SHA1_ARRAY_H */