summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorAlex Riesen <raa.lkml@gmail.com>2008-10-27 10:17:51 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-10-31 00:30:55 (GMT)
commitaba13e7c0566f578f866504bfcb388a72f7e5079 (patch)
tree6c34533e3c73d7d8034c0934603ceef03f6fd157 /cache.h
parent958a4789e0e74da245175e31bd3b9b354ee0e063 (diff)
downloadgit-aba13e7c0566f578f866504bfcb388a72f7e5079.zip
git-aba13e7c0566f578f866504bfcb388a72f7e5079.tar.gz
git-aba13e7c0566f578f866504bfcb388a72f7e5079.tar.bz2
git_pathdup: returns xstrdup-ed copy of the formatted path
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index 3d5a08e..eaacd6d 100644
--- a/cache.h
+++ b/cache.h
@@ -484,6 +484,8 @@ extern char *mksnpath(char *buf, size_t n, const char *fmt, ...)
__attribute__((format (printf, 3, 4)));
extern char *git_snpath(char *buf, size_t n, const char *fmt, ...)
__attribute__((format (printf, 3, 4)));
+extern char *git_pathdup(const char *fmt, ...)
+ __attribute__((format (printf, 1, 2)));
/* Return a statically allocated filename matching the sha1 signature */
extern char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2)));