Project:
Git
Code Location:
git://github.com/git/git.gitmaster
/
Outline
- > V char usage_msg
-
>
Fn
int main(int,char*)
- V timeval now
- V char x
test-date.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include "cache.h" static const char *usage_msg = "\n" " test-date show [time_t]...\n" " test-date parse [date]...\n" " test-date approxidate [date]...\n"; static void show_dates(char **argv, struct timeval *now) { struct strbuf buf = STRBUF_INIT; for (; *argv; argv++) { time_t t = atoi(*argv); show_date_relative(t, 0, now, &buf); printf("%s -> %s\n", *argv, buf.buf); } strbuf_release(&buf); } static void parse_dates(char **argv, struct timeval *now) { for (; *argv; argv++) { char result[100]; unsigned long t; int tz; result[0] = 0; parse_date(*argv, result, sizeof(result)); if (sscanf(result, "%lu %d", &t, &tz) == 2) printf("%s -> %s\n", *argv, show_date(t, tz, DATE_ISO8601)); else printf("%s -> bad\n", *argv); } } static void parse_approxidate(char **argv, struct timeval *now) { for (; *argv; argv++) { time_t t; t = approxidate_relative(*argv, now); printf("%s -> %s\n", *argv, show_date(t, 0, DATE_ISO8601)); } } int main(int argc, char **argv) { struct timeval now; const char *x; x = getenv("TEST_DATE_NOW"); if (x) { now.tv_sec = atoi(x); now.tv_usec = 0; } else gettimeofday(&now, NULL); argv++; if (!*argv) usage(usage_msg); if (!strcmp(*argv, "show")) show_dates(argv+1, &now); else if (!strcmp(*argv, "parse")) parse_dates(argv+1, &now); else if (!strcmp(*argv, "approxidate")) parse_approxidate(argv+1, &now); else usage(usage_msg); return 0; }
