Staging
v0.5.1
https://github.com/git/git
Revision 7cdafcaacf677b9e0700fa988c247bda192db48d authored by Johannes Schindelin on 04 December 2019, 20:33:29 UTC, committed by Johannes Schindelin on 06 December 2019, 15:26:58 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent e904deb
Raw File
Tip revision: 7cdafcaacf677b9e0700fa988c247bda192db48d authored by Johannes Schindelin on 04 December 2019, 20:33:29 UTC
Git 2.15.4
Tip revision: 7cdafca
sha1-array.h
#ifndef SHA1_ARRAY_H
#define SHA1_ARRAY_H

struct oid_array {
	struct object_id *oid;
	int nr;
	int alloc;
	int sorted;
};

#define OID_ARRAY_INIT { NULL, 0, 0, 0 }

void oid_array_append(struct oid_array *array, const struct object_id *oid);
int oid_array_lookup(struct oid_array *array, const struct object_id *oid);
void oid_array_clear(struct oid_array *array);

typedef int (*for_each_oid_fn)(const struct object_id *oid,
			       void *data);
int oid_array_for_each_unique(struct oid_array *array,
			       for_each_oid_fn fn,
			       void *data);

#endif /* SHA1_ARRAY_H */
back to top