sha1_file: add repository argument to open_sha1_file
[gitweb.git] / object-store.h
index f54bc0b951a6af5a082dd131d36a9bb53d6d1958..3707f3c4952bda328a74641513b95748eae58bc3 100644 (file)
@@ -121,4 +121,11 @@ struct raw_object_store {
 struct raw_object_store *raw_object_store_new(void);
 void raw_object_store_clear(struct raw_object_store *o);
 
+/*
+ * Put in `buf` the name of the file in the local object database that
+ * would be used to store a loose object with the specified sha1.
+ */
+#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);
+
 #endif /* OBJECT_STORE_H */