2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
10 * This is like mktime, but without normalization of tm_wday and tm_yday.
12 static time_t tm_to_time_t(const struct tm *tm)
14 static const int mdays[] = {
15 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
17 int year = tm->tm_year - 70;
18 int month = tm->tm_mon;
19 int day = tm->tm_mday;
21 if (year < 0 || year > 129) /* algo only works for 1970-2099 */
23 if (month < 0 || month > 11) /* array bounds */
25 if (month < 2 || (year + 2) % 4)
27 if (tm->tm_hour < 0 || tm->tm_min < 0 || tm->tm_sec < 0)
29 return (year * 365 + (year + 1) / 4 + mdays[month] + day) * 24*60*60UL +
30 tm->tm_hour * 60*60 + tm->tm_min * 60 + tm->tm_sec;
33 static const char *month_names[] = {
34 "January", "February", "March", "April", "May", "June",
35 "July", "August", "September", "October", "November", "December"
38 static const char *weekday_names[] = {
39 "Sundays", "Mondays", "Tuesdays", "Wednesdays", "Thursdays", "Fridays", "Saturdays"
42 static time_t gm_time_t(unsigned long time, int tz)
46 minutes = tz < 0 ? -tz : tz;
47 minutes = (minutes / 100)*60 + (minutes % 100);
48 minutes = tz < 0 ? -minutes : minutes;
49 return time + minutes * 60;
53 * The "tz" thing is passed in as this strange "decimal parse of tz"
54 * thing, which means that tz -0100 is passed in as the integer -100,
55 * even though it means "sixty minutes off"
57 static struct tm *time_to_tm(unsigned long time, int tz)
59 time_t t = gm_time_t(time, tz);
64 * What value of "tz" was in effect back then at "time" in the
67 static int local_tzoffset(unsigned long time)
75 t_local = tm_to_time_t(&tm);
84 offset /= 60; /* in minutes */
85 offset = (offset % 60) + ((offset / 60) * 100);
86 return offset * eastwest;
89 void show_date_relative(unsigned long time, int tz,
90 const struct timeval *now,
91 struct strbuf *timebuf)
94 if (now->tv_sec < time) {
95 strbuf_addstr(timebuf, _("in the future"));
98 diff = now->tv_sec - time;
101 Q_("%lu second ago", "%lu seconds ago", diff), diff);
104 /* Turn it into minutes */
105 diff = (diff + 30) / 60;
108 Q_("%lu minute ago", "%lu minutes ago", diff), diff);
111 /* Turn it into hours */
112 diff = (diff + 30) / 60;
115 Q_("%lu hour ago", "%lu hours ago", diff), diff);
118 /* We deal with number of days from here on */
119 diff = (diff + 12) / 24;
122 Q_("%lu day ago", "%lu days ago", diff), diff);
125 /* Say weeks for the past 10 weeks or so */
128 Q_("%lu week ago", "%lu weeks ago", (diff + 3) / 7),
132 /* Say months for the past 12 months or so */
135 Q_("%lu month ago", "%lu months ago", (diff + 15) / 30),
139 /* Give years and months for 5 years or so */
141 unsigned long totalmonths = (diff * 12 * 2 + 365) / (365 * 2);
142 unsigned long years = totalmonths / 12;
143 unsigned long months = totalmonths % 12;
145 struct strbuf sb = STRBUF_INIT;
146 strbuf_addf(&sb, Q_("%lu year", "%lu years", years), years);
148 /* TRANSLATORS: "%s" is "<n> years" */
149 Q_("%s, %lu month ago", "%s, %lu months ago", months),
154 Q_("%lu year ago", "%lu years ago", years), years);
157 /* Otherwise, just years. Centuries is probably overkill. */
159 Q_("%lu year ago", "%lu years ago", (diff + 183) / 365),
163 struct date_mode *date_mode_from_type(enum date_mode_type type)
165 static struct date_mode mode;
166 if (type == DATE_STRFTIME)
167 die("BUG: cannot create anonymous strftime date_mode struct");
172 const char *show_date(unsigned long time, int tz, const struct date_mode *mode)
175 static struct strbuf timebuf = STRBUF_INIT;
177 if (mode->type == DATE_RAW) {
178 strbuf_reset(&timebuf);
179 strbuf_addf(&timebuf, "%lu %+05d", time, tz);
183 if (mode->type == DATE_RELATIVE) {
186 strbuf_reset(&timebuf);
187 gettimeofday(&now, NULL);
188 show_date_relative(time, tz, &now, &timebuf);
192 if (mode->type == DATE_LOCAL)
193 tz = local_tzoffset(time);
195 tm = time_to_tm(time, tz);
197 tm = time_to_tm(0, 0);
201 strbuf_reset(&timebuf);
202 if (mode->type == DATE_SHORT)
203 strbuf_addf(&timebuf, "%04d-%02d-%02d", tm->tm_year + 1900,
204 tm->tm_mon + 1, tm->tm_mday);
205 else if (mode->type == DATE_ISO8601)
206 strbuf_addf(&timebuf, "%04d-%02d-%02d %02d:%02d:%02d %+05d",
210 tm->tm_hour, tm->tm_min, tm->tm_sec,
212 else if (mode->type == DATE_ISO8601_STRICT) {
213 char sign = (tz >= 0) ? '+' : '-';
215 strbuf_addf(&timebuf, "%04d-%02d-%02dT%02d:%02d:%02d%c%02d:%02d",
219 tm->tm_hour, tm->tm_min, tm->tm_sec,
220 sign, tz / 100, tz % 100);
221 } else if (mode->type == DATE_RFC2822)
222 strbuf_addf(&timebuf, "%.3s, %d %.3s %d %02d:%02d:%02d %+05d",
223 weekday_names[tm->tm_wday], tm->tm_mday,
224 month_names[tm->tm_mon], tm->tm_year + 1900,
225 tm->tm_hour, tm->tm_min, tm->tm_sec, tz);
226 else if (mode->type == DATE_STRFTIME)
227 strbuf_addftime(&timebuf, mode->strftime_fmt, tm);
229 strbuf_addf(&timebuf, "%.3s %.3s %d %02d:%02d:%02d %d%c%+05d",
230 weekday_names[tm->tm_wday],
231 month_names[tm->tm_mon],
233 tm->tm_hour, tm->tm_min, tm->tm_sec,
235 (mode->type == DATE_LOCAL) ? 0 : ' ',
241 * Check these. And note how it doesn't do the summer-time conversion.
243 * In my world, it's always summer, and things are probably a bit off
246 static const struct {
250 } timezone_names[] = {
251 { "IDLW", -12, 0, }, /* International Date Line West */
252 { "NT", -11, 0, }, /* Nome */
253 { "CAT", -10, 0, }, /* Central Alaska */
254 { "HST", -10, 0, }, /* Hawaii Standard */
255 { "HDT", -10, 1, }, /* Hawaii Daylight */
256 { "YST", -9, 0, }, /* Yukon Standard */
257 { "YDT", -9, 1, }, /* Yukon Daylight */
258 { "PST", -8, 0, }, /* Pacific Standard */
259 { "PDT", -8, 1, }, /* Pacific Daylight */
260 { "MST", -7, 0, }, /* Mountain Standard */
261 { "MDT", -7, 1, }, /* Mountain Daylight */
262 { "CST", -6, 0, }, /* Central Standard */
263 { "CDT", -6, 1, }, /* Central Daylight */
264 { "EST", -5, 0, }, /* Eastern Standard */
265 { "EDT", -5, 1, }, /* Eastern Daylight */
266 { "AST", -3, 0, }, /* Atlantic Standard */
267 { "ADT", -3, 1, }, /* Atlantic Daylight */
268 { "WAT", -1, 0, }, /* West Africa */
270 { "GMT", 0, 0, }, /* Greenwich Mean */
271 { "UTC", 0, 0, }, /* Universal (Coordinated) */
272 { "Z", 0, 0, }, /* Zulu, alias for UTC */
274 { "WET", 0, 0, }, /* Western European */
275 { "BST", 0, 1, }, /* British Summer */
276 { "CET", +1, 0, }, /* Central European */
277 { "MET", +1, 0, }, /* Middle European */
278 { "MEWT", +1, 0, }, /* Middle European Winter */
279 { "MEST", +1, 1, }, /* Middle European Summer */
280 { "CEST", +1, 1, }, /* Central European Summer */
281 { "MESZ", +1, 1, }, /* Middle European Summer */
282 { "FWT", +1, 0, }, /* French Winter */
283 { "FST", +1, 1, }, /* French Summer */
284 { "EET", +2, 0, }, /* Eastern Europe, USSR Zone 1 */
285 { "EEST", +2, 1, }, /* Eastern European Daylight */
286 { "WAST", +7, 0, }, /* West Australian Standard */
287 { "WADT", +7, 1, }, /* West Australian Daylight */
288 { "CCT", +8, 0, }, /* China Coast, USSR Zone 7 */
289 { "JST", +9, 0, }, /* Japan Standard, USSR Zone 8 */
290 { "EAST", +10, 0, }, /* Eastern Australian Standard */
291 { "EADT", +10, 1, }, /* Eastern Australian Daylight */
292 { "GST", +10, 0, }, /* Guam Standard, USSR Zone 9 */
293 { "NZT", +12, 0, }, /* New Zealand */
294 { "NZST", +12, 0, }, /* New Zealand Standard */
295 { "NZDT", +12, 1, }, /* New Zealand Daylight */
296 { "IDLE", +12, 0, }, /* International Date Line East */
299 static int match_string(const char *date, const char *str)
303 for (i = 0; *date; date++, str++, i++) {
306 if (toupper(*date) == toupper(*str))
315 static int skip_alpha(const char *date)
320 } while (isalpha(date[i]));
325 * Parse month, weekday, or timezone name
327 static int match_alpha(const char *date, struct tm *tm, int *offset)
331 for (i = 0; i < 12; i++) {
332 int match = match_string(date, month_names[i]);
339 for (i = 0; i < 7; i++) {
340 int match = match_string(date, weekday_names[i]);
347 for (i = 0; i < ARRAY_SIZE(timezone_names); i++) {
348 int match = match_string(date, timezone_names[i].name);
349 if (match >= 3 || match == strlen(timezone_names[i].name)) {
350 int off = timezone_names[i].offset;
352 /* This is bogus, but we like summer */
353 off += timezone_names[i].dst;
355 /* Only use the tz name offset if we don't have anything better */
363 if (match_string(date, "PM") == 2) {
364 tm->tm_hour = (tm->tm_hour % 12) + 12;
368 if (match_string(date, "AM") == 2) {
369 tm->tm_hour = (tm->tm_hour % 12) + 0;
374 return skip_alpha(date);
377 static int is_date(int year, int month, int day, struct tm *now_tm, time_t now, struct tm *tm)
379 if (month > 0 && month < 13 && day > 0 && day < 32) {
380 struct tm check = *tm;
381 struct tm *r = (now_tm ? &check : tm);
384 r->tm_mon = month - 1;
389 r->tm_year = now_tm->tm_year;
391 else if (year >= 1970 && year < 2100)
392 r->tm_year = year - 1900;
393 else if (year > 70 && year < 100)
396 r->tm_year = year + 100;
402 specified = tm_to_time_t(r);
404 /* Be it commit time or author time, it does not make
405 * sense to specify timestamp way into the future. Make
406 * sure it is not later than ten days from now...
408 if ((specified != -1) && (now + 10*24*3600 < specified))
410 tm->tm_mon = r->tm_mon;
411 tm->tm_mday = r->tm_mday;
413 tm->tm_year = r->tm_year;
419 static int match_multi_number(unsigned long num, char c, const char *date,
420 char *end, struct tm *tm, time_t now)
423 struct tm *refuse_future;
426 num2 = strtol(end+1, &end, 10);
428 if (*end == c && isdigit(end[1]))
429 num3 = strtol(end+1, &end, 10);
436 if (num < 25 && num2 >= 0 && num2 < 60 && num3 >= 0 && num3 <= 60) {
449 refuse_future = NULL;
450 if (gmtime_r(&now, &now_tm))
451 refuse_future = &now_tm;
455 if (is_date(num, num2, num3, NULL, now, tm))
458 if (is_date(num, num3, num2, NULL, now, tm))
461 /* Our eastern European friends say dd.mm.yy[yy]
462 * is the norm there, so giving precedence to
463 * mm/dd/yy[yy] form only when separator is not '.'
466 is_date(num3, num, num2, refuse_future, now, tm))
468 /* European dd.mm.yy[yy] or funny US dd/mm/yy[yy] */
469 if (is_date(num3, num2, num, refuse_future, now, tm))
471 /* Funny European mm.dd.yy */
473 is_date(num3, num, num2, refuse_future, now, tm))
481 * Have we filled in any part of the time/date yet?
482 * We just do a binary 'and' to see if the sign bit
483 * is set in all the values.
485 static inline int nodate(struct tm *tm)
487 return (tm->tm_year &
496 * We've seen a digit. Time? Year? Date?
498 static int match_digit(const char *date, struct tm *tm, int *offset, int *tm_gmt)
504 num = strtoul(date, &end, 10);
507 * Seconds since 1970? We trigger on that for any numbers with
508 * more than 8 digits. This is because we don't want to rule out
509 * numbers like 20070606 as a YYYYMMDD date.
511 if (num >= 100000000 && nodate(tm)) {
513 if (gmtime_r(&time, tm)) {
520 * Check for special formats: num[-.:/]num[same]num
527 if (isdigit(end[1])) {
528 int match = match_multi_number(num, *end, date, end, tm, 0);
535 * None of the special formats? Try to guess what
536 * the number meant. We use the number of digits
537 * to make a more educated guess..
542 } while (isdigit(date[n]));
544 /* Four-digit year or a timezone? */
546 if (num <= 1400 && *offset == -1) {
547 unsigned int minutes = num % 100;
548 unsigned int hours = num / 100;
549 *offset = hours*60 + minutes;
550 } else if (num > 1900 && num < 2100)
551 tm->tm_year = num - 1900;
556 * Ignore lots of numerals. We took care of 4-digit years above.
557 * Days or months must be one or two digits.
563 * NOTE! We will give precedence to day-of-month over month or
564 * year numbers in the 1-12 range. So 05 is always "mday 5",
565 * unless we already have a mday..
567 * IOW, 01 Apr 05 parses as "April 1st, 2005".
569 if (num > 0 && num < 32 && tm->tm_mday < 0) {
574 /* Two-digit year? */
575 if (n == 2 && tm->tm_year < 0) {
576 if (num < 10 && tm->tm_mday >= 0) {
577 tm->tm_year = num + 100;
586 if (num > 0 && num < 13 && tm->tm_mon < 0)
592 static int match_tz(const char *date, int *offp)
595 int hour = strtoul(date + 1, &end, 10);
596 int n = end - (date + 1);
604 min = 99; /* random crap */
605 } else if (*end == ':') {
607 min = strtoul(end + 1, &end, 10);
608 if (end - (date + 1) != 5)
609 min = 99; /* random crap */
610 } /* otherwise we parsed "hh" */
613 * Don't accept any random crap. Even though some places have
614 * offset larger than 12 hours (e.g. Pacific/Kiritimati is at
615 * UTC+14), there is something wrong if hour part is much
616 * larger than that. We might also want to check that the
617 * minutes are divisible by 15 or something too. (Offset of
618 * Kathmandu, Nepal is UTC+5:45)
620 if (min < 60 && hour < 24) {
621 int offset = hour * 60 + min;
629 static void date_string(unsigned long date, int offset, struct strbuf *buf)
637 strbuf_addf(buf, "%lu %c%02d%02d", date, sign, offset / 60, offset % 60);
641 * Parse a string like "0 +0000" as ancient timestamp near epoch, but
642 * only when it appears not as part of any other string.
644 static int match_object_header_date(const char *date, unsigned long *timestamp, int *offset)
650 if (*date < '0' || '9' < *date)
652 stamp = strtoul(date, &end, 10);
653 if (*end != ' ' || stamp == ULONG_MAX || (end[1] != '+' && end[1] != '-'))
656 ofs = strtol(date, &end, 10);
657 if ((*end != '\0' && (*end != '\n')) || end != date + 4)
659 ofs = (ofs / 100) * 60 + (ofs % 100);
667 /* Gr. strptime is crap for this; it doesn't have a way to require RFC2822
668 (i.e. English) day/month names, and it doesn't work correctly with %z. */
669 int parse_date_basic(const char *date, unsigned long *timestamp, int *offset)
673 unsigned long dummy_timestamp;
677 timestamp = &dummy_timestamp;
679 offset = &dummy_offset;
681 memset(&tm, 0, sizeof(tm));
693 !match_object_header_date(date + 1, timestamp, offset))
694 return 0; /* success */
697 unsigned char c = *date;
699 /* Stop at end of string or newline */
704 match = match_alpha(date, &tm, offset);
706 match = match_digit(date, &tm, offset, &tm_gmt);
707 else if ((c == '-' || c == '+') && isdigit(date[1]))
708 match = match_tz(date, offset);
718 /* do not use mktime(), which uses local timezone, here */
719 *timestamp = tm_to_time_t(&tm);
720 if (*timestamp == -1)
726 /* gmtime_r() in match_digit() may have clobbered it */
728 temp_time = mktime(&tm);
729 if ((time_t)*timestamp > temp_time) {
730 *offset = ((time_t)*timestamp - temp_time) / 60;
732 *offset = -(int)((temp_time - (time_t)*timestamp) / 60);
737 *timestamp -= *offset * 60;
738 return 0; /* success */
741 int parse_expiry_date(const char *date, unsigned long *timestamp)
745 if (!strcmp(date, "never") || !strcmp(date, "false"))
747 else if (!strcmp(date, "all") || !strcmp(date, "now"))
749 * We take over "now" here, which usually translates
750 * to the current timestamp. This is because the user
751 * really means to expire everything she has done in
752 * the past, and by definition reflogs are the record
753 * of the past, and there is nothing from the future
756 *timestamp = ULONG_MAX;
758 *timestamp = approxidate_careful(date, &errors);
763 int parse_date(const char *date, struct strbuf *result)
765 unsigned long timestamp;
767 if (parse_date_basic(date, ×tamp, &offset))
769 date_string(timestamp, offset, result);
773 void parse_date_format(const char *format, struct date_mode *mode)
775 if (!strcmp(format, "relative"))
776 mode->type = DATE_RELATIVE;
777 else if (!strcmp(format, "iso8601") ||
778 !strcmp(format, "iso"))
779 mode->type = DATE_ISO8601;
780 else if (!strcmp(format, "iso8601-strict") ||
781 !strcmp(format, "iso-strict"))
782 mode->type = DATE_ISO8601_STRICT;
783 else if (!strcmp(format, "rfc2822") ||
784 !strcmp(format, "rfc"))
785 mode->type = DATE_RFC2822;
786 else if (!strcmp(format, "short"))
787 mode->type = DATE_SHORT;
788 else if (!strcmp(format, "local"))
789 mode->type = DATE_LOCAL;
790 else if (!strcmp(format, "default"))
791 mode->type = DATE_NORMAL;
792 else if (!strcmp(format, "raw"))
793 mode->type = DATE_RAW;
794 else if (skip_prefix(format, "format:", &format)) {
795 mode->type = DATE_STRFTIME;
796 mode->strftime_fmt = xstrdup(format);
798 die("unknown date format %s", format);
801 void datestamp(struct strbuf *out)
808 offset = tm_to_time_t(localtime(&now)) - now;
811 date_string(now, offset, out);
815 * Relative time update (eg "2 days ago"). If we haven't set the time
816 * yet, we need to set it from current time.
818 static unsigned long update_tm(struct tm *tm, struct tm *now, unsigned long sec)
823 tm->tm_mday = now->tm_mday;
825 tm->tm_mon = now->tm_mon;
826 if (tm->tm_year < 0) {
827 tm->tm_year = now->tm_year;
828 if (tm->tm_mon > now->tm_mon)
832 n = mktime(tm) - sec;
837 static void date_now(struct tm *tm, struct tm *now, int *num)
839 update_tm(tm, now, 0);
842 static void date_yesterday(struct tm *tm, struct tm *now, int *num)
844 update_tm(tm, now, 24*60*60);
847 static void date_time(struct tm *tm, struct tm *now, int hour)
849 if (tm->tm_hour < hour)
850 date_yesterday(tm, now, NULL);
856 static void date_midnight(struct tm *tm, struct tm *now, int *num)
858 date_time(tm, now, 0);
861 static void date_noon(struct tm *tm, struct tm *now, int *num)
863 date_time(tm, now, 12);
866 static void date_tea(struct tm *tm, struct tm *now, int *num)
868 date_time(tm, now, 17);
871 static void date_pm(struct tm *tm, struct tm *now, int *num)
882 tm->tm_hour = (hour % 12) + 12;
885 static void date_am(struct tm *tm, struct tm *now, int *num)
896 tm->tm_hour = (hour % 12);
899 static void date_never(struct tm *tm, struct tm *now, int *num)
905 static const struct special {
907 void (*fn)(struct tm *, struct tm *, int *);
909 { "yesterday", date_yesterday },
910 { "noon", date_noon },
911 { "midnight", date_midnight },
915 { "never", date_never },
920 static const char *number_name[] = {
921 "zero", "one", "two", "three", "four",
922 "five", "six", "seven", "eight", "nine", "ten",
925 static const struct typelen {
932 { "days", 24*60*60 },
933 { "weeks", 7*24*60*60 },
937 static const char *approxidate_alpha(const char *date, struct tm *tm, struct tm *now, int *num, int *touched)
939 const struct typelen *tl;
940 const struct special *s;
941 const char *end = date;
944 while (isalpha(*++end))
947 for (i = 0; i < 12; i++) {
948 int match = match_string(date, month_names[i]);
956 for (s = special; s->name; s++) {
957 int len = strlen(s->name);
958 if (match_string(date, s->name) == len) {
966 for (i = 1; i < 11; i++) {
967 int len = strlen(number_name[i]);
968 if (match_string(date, number_name[i]) == len) {
974 if (match_string(date, "last") == 4) {
983 int len = strlen(tl->type);
984 if (match_string(date, tl->type) >= len-1) {
985 update_tm(tm, now, tl->length * *num);
993 for (i = 0; i < 7; i++) {
994 int match = match_string(date, weekday_names[i]);
996 int diff, n = *num -1;
999 diff = tm->tm_wday - i;
1004 update_tm(tm, now, diff * 24 * 60 * 60);
1010 if (match_string(date, "months") >= 5) {
1012 update_tm(tm, now, 0); /* fill in date fields if needed */
1013 n = tm->tm_mon - *num;
1024 if (match_string(date, "years") >= 4) {
1025 update_tm(tm, now, 0); /* fill in date fields if needed */
1026 tm->tm_year -= *num;
1035 static const char *approxidate_digit(const char *date, struct tm *tm, int *num,
1039 unsigned long number = strtoul(date, &end, 10);
1046 if (isdigit(end[1])) {
1047 int match = match_multi_number(number, *end, date, end,
1050 return date + match;
1054 /* Accept zero-padding only for small numbers ("Dec 02", never "Dec 0002") */
1055 if (date[0] != '0' || end - date <= 2)
1061 * Do we have a pending number at the end, or when
1062 * we see a new one? Let's assume it's a month day,
1063 * as in "Dec 6, 1992"
1065 static void pending_number(struct tm *tm, int *num)
1071 if (tm->tm_mday < 0 && number < 32)
1072 tm->tm_mday = number;
1073 else if (tm->tm_mon < 0 && number < 13)
1074 tm->tm_mon = number-1;
1075 else if (tm->tm_year < 0) {
1076 if (number > 1969 && number < 2100)
1077 tm->tm_year = number - 1900;
1078 else if (number > 69 && number < 100)
1079 tm->tm_year = number;
1080 else if (number < 38)
1081 tm->tm_year = 100 + number;
1082 /* We screw up for number = 00 ? */
1087 static unsigned long approxidate_str(const char *date,
1088 const struct timeval *tv,
1096 time_sec = tv->tv_sec;
1097 localtime_r(&time_sec, &tm);
1105 unsigned char c = *date;
1110 pending_number(&tm, &number);
1111 date = approxidate_digit(date-1, &tm, &number, time_sec);
1116 date = approxidate_alpha(date-1, &tm, &now, &number, &touched);
1118 pending_number(&tm, &number);
1121 return update_tm(&tm, &now, 0);
1124 unsigned long approxidate_relative(const char *date, const struct timeval *tv)
1126 unsigned long timestamp;
1130 if (!parse_date_basic(date, ×tamp, &offset))
1132 return approxidate_str(date, tv, &errors);
1135 unsigned long approxidate_careful(const char *date, int *error_ret)
1138 unsigned long timestamp;
1144 if (!parse_date_basic(date, ×tamp, &offset)) {
1149 gettimeofday(&tv, NULL);
1150 return approxidate_str(date, &tv, error_ret);
1153 int date_overflows(unsigned long t)
1157 /* If we overflowed our unsigned long, that's bad... */
1162 * ...but we also are going to feed the result to system
1163 * functions that expect time_t, which is often "signed long".
1164 * Make sure that we fit into time_t, as well.
1167 return t != sys || (t < 1) != (sys < 1);