summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2007-02-27 15:21:04 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-02-28 01:29:37 (GMT)
commitf8493ec09bcdbd616084dcfa6f5b8ca0bbb68acf (patch)
tree0c35303d6086605ed933adf85e3812de7fda47a0 /cache.h
parent094e03b039aeaad759227540491c235b3a83b83a (diff)
downloadgit-f8493ec09bcdbd616084dcfa6f5b8ca0bbb68acf.zip
git-f8493ec09bcdbd616084dcfa6f5b8ca0bbb68acf.tar.gz
git-f8493ec09bcdbd616084dcfa6f5b8ca0bbb68acf.tar.bz2
show_date(): rename the "relative" parameter to "mode"
Now, show_date() can print three different kinds of dates: normal, relative and short (%Y-%m-%s) dates. To achieve this, the "int relative" was changed to "enum date_mode mode", which has three states: DATE_NORMAL, DATE_RELATIVE and DATE_SHORT. Since existing users of show_date() only call it with relative_date being either 0 or 1, and DATE_NORMAL and DATE_RELATIVE having these values, no behaviour is changed. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index c62b0b0..75418c0 100644
--- a/cache.h
+++ b/cache.h
@@ -315,7 +315,8 @@ extern void *read_object_with_reference(const unsigned char *sha1,
unsigned long *size,
unsigned char *sha1_ret);
-const char *show_date(unsigned long time, int timezone, int relative);
+enum date_mode { DATE_NORMAL = 0, DATE_RELATIVE, DATE_SHORT };
+const char *show_date(unsigned long time, int timezone, enum date_mode mode);
const char *show_rfc2822_date(unsigned long time, int timezone);
int parse_date(const char *date, char *buf, int bufsize);
void datestamp(char *buf, int bufsize);