]> git.ipfire.org Git - thirdparty/git.git/blobdiff - sha1-array.c
t5318: avoid unnecessary command substitutions
[thirdparty/git.git] / sha1-array.c
index 838b3bf8478cfdfcd78f866e69dc0f8c5cbf3c9e..265941fbf40d4a6c64bb1e77b2aef7a5950493a7 100644 (file)
@@ -41,9 +41,26 @@ void oid_array_clear(struct oid_array *array)
        array->sorted = 0;
 }
 
+
+int oid_array_for_each(struct oid_array *array,
+                      for_each_oid_fn fn,
+                      void *data)
+{
+       int i;
+
+       /* No oid_array_sort() here! See the api-oid-array.txt docs! */
+
+       for (i = 0; i < array->nr; i++) {
+               int ret = fn(array->oid + i, data);
+               if (ret)
+                       return ret;
+       }
+       return 0;
+}
+
 int oid_array_for_each_unique(struct oid_array *array,
-                               for_each_oid_fn fn,
-                               void *data)
+                             for_each_oid_fn fn,
+                             void *data)
 {
        int i;