summaryrefslogtreecommitdiff
path: root/object-store.h
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2018-03-23 17:21:14 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-03-26 17:05:55 (GMT)
commite35454fa622dc5978100ad0aa5fa85dc02aa6a43 (patch)
tree62aa8e4fc963f812bbfdc95ac7afa9338bc8c437 /object-store.h
parent332295d7e4292d78c92ac36e4c794ab634ab9399 (diff)
downloadgit-e35454fa622dc5978100ad0aa5fa85dc02aa6a43.zip
git-e35454fa622dc5978100ad0aa5fa85dc02aa6a43.tar.gz
git-e35454fa622dc5978100ad0aa5fa85dc02aa6a43.tar.bz2
sha1_file: add repository argument to map_sha1_file
Add a repository argument to allow map_sha1_file callers to be more specific about which repository to handle. This is a small mechanical change; it doesn't change the implementation to handle repositories other than the_repository yet. As with the previous commits, use a macro to catch callers passing a repository other than the_repository at compile time. While at it, move the declaration to object-store.h, where it should be easier to find. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com> Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'object-store.h')
-rw-r--r--object-store.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/object-store.h b/object-store.h
index 3707f3c..0367174 100644
--- a/object-store.h
+++ b/object-store.h
@@ -128,4 +128,7 @@ void raw_object_store_clear(struct raw_object_store *o);
#define sha1_file_name(r, b, s) sha1_file_name_##r(b, s)
void sha1_file_name_the_repository(struct strbuf *buf, const unsigned char *sha1);
+#define map_sha1_file(r, s, sz) map_sha1_file_##r(s, sz)
+void *map_sha1_file_the_repository(const unsigned char *sha1, unsigned long *size);
+
#endif /* OBJECT_STORE_H */