diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2017-08-18 15:20:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-23 15:12:07 -0700 |
commit | 7709f468fdeece2a99d60a581a4ced65cd2844df (patch) | |
tree | 37a26e9a350ec173d24f5578004e0000d3c6170e /packfile.h | |
parent | f9a8672a81277b83cabd59c6705089351c4f3ec4 (diff) | |
download | git-7709f468fdeece2a99d60a581a4ced65cd2844df.tar.gz |
pack: move for_each_packed_object()
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'packfile.h')
-rw-r--r-- | packfile.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packfile.h b/packfile.h index d7df41a823..0cdeb54dcd 100644 --- a/packfile.h +++ b/packfile.h @@ -124,4 +124,15 @@ extern int has_sha1_pack(const unsigned char *sha1); extern int has_pack_index(const unsigned char *sha1); +/* + * Iterate over packed objects in both the local + * repository and any alternates repositories (unless the + * FOR_EACH_OBJECT_LOCAL_ONLY flag, defined in cache.h, is set). + */ +typedef int each_packed_object_fn(const struct object_id *oid, + struct packed_git *pack, + uint32_t pos, + void *data); +extern int for_each_packed_object(each_packed_object_fn, void *, unsigned flags); + #endif |