aboutsummaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-11-21 23:44:35 -0800
committerJunio C Hamano <junkio@cox.net>2005-11-21 23:44:35 -0800
commitc7d77dab9333112cfce8cce51e56005b5e8b4076 (patch)
tree5bc7f67c535dbbbb9340285c82226a8dd6e4afec /cache.h
parent9ce392f4826558357af2b2c7eb6ad876fdb53a91 (diff)
downloadgit-c7d77dab9333112cfce8cce51e56005b5e8b4076.tar.gz
git-c7d77dab9333112cfce8cce51e56005b5e8b4076.tar.xz
git-var: constness and globalness cleanup.
var.c::git_var read function did not have to return writable strings; make it and the functions it points at return const char * instead. ident.c::get_ident() did not need to be global, so make it static. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/cache.h b/cache.h
index c7c6637b1..6ac94c5a1 100644
--- a/cache.h
+++ b/cache.h
@@ -263,9 +263,8 @@ void datestamp(char *buf, int bufsize);
unsigned long approxidate(const char *);
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);
+extern const char *git_author_info(void);
+extern const char *git_committer_info(void);
static inline void *xmalloc(size_t size)
{