summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-05-13 22:33:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-05-21 01:38:54 (GMT)
commitf8c8abc5b76ffd763b9c7c5e4fb054358e82ca28 (patch)
tree1c2cb22da01f358bf7f3f41311feefff3fdce883 /sha1_file.c
parent5266d369b21f8c260fa60d94fb29c3998c521e4a (diff)
downloadgit-f8c8abc5b76ffd763b9c7c5e4fb054358e82ca28.zip
git-f8c8abc5b76ffd763b9c7c5e4fb054358e82ca28.tar.gz
git-f8c8abc5b76ffd763b9c7c5e4fb054358e82ca28.tar.bz2
unpack_object_header(): make it public
This function is used to read and skip over the per-object header in a packfile. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 1d6f93d..a28683a 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -1523,10 +1523,10 @@ static int packed_delta_info(struct packed_git *p,
return type;
}
-static int unpack_object_header(struct packed_git *p,
- struct pack_window **w_curs,
- off_t *curpos,
- unsigned long *sizep)
+int unpack_object_header(struct packed_git *p,
+ struct pack_window **w_curs,
+ off_t *curpos,
+ unsigned long *sizep)
{
unsigned char *base;
unsigned int left;