diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2008-10-27 10:22:21 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-30 17:00:14 -0700 |
commit | fe2d7776d5191896e361973f478ca078fa95b324 (patch) | |
tree | d7aefac116a2a575831e7515612223a3b20e0bea /cache.h | |
parent | 9fa03c177ff826b439537072338af958fe01c257 (diff) | |
download | git-fe2d7776d5191896e361973f478ca078fa95b324.tar.gz |
Add git_snpath: a .git path formatting routine with output buffer
The function's purpose is to replace git_path where the buffer of
formatted path may not be reused by subsequent calls of the function
or will be copied anyway.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -482,6 +482,8 @@ extern int check_repository_format(void); 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))); /* Return a statically allocated filename matching the sha1 signature */ extern char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2))); |