Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2005-07-15 04:50:33 +0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-15 21:00:35 +0400
commitd289d13625ffa568c3007c3620eaafeb521ac06d (patch)
tree8ea52a947f32245c39d746d3a2ca9b3f1a8d258d /cache.h
parente64e1b79d7c50a234e97d59aadc7a4911de91efe (diff)
[PATCH] Move git_author_info and git_commiter_info to ident.c
Moving these functions allows all of the logic for figuring out what these values are to be shared between programs. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
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 35e0ad7e0e..73e05dcd8b 100644
--- a/cache.h
+++ b/cache.h
@@ -224,6 +224,8 @@ void datestamp(char *buf, int bufsize);
extern int setup_ident(void);
extern char *get_ident(const char *name, const char *email, const char *date_str);
+extern char *git_author_info(void);
+extern char *git_committer_info(void);
static inline void *xmalloc(size_t size)
{