summaryrefslogtreecommitdiffstats
path: root/app/time_fn.h
blob: 7cf75d33ba1dbdd02868ac6d55fabcfd5a93251c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
typedef struct {
  unsigned year;
  unsigned is_leap;
  unsigned jday;
  unsigned month;
  unsigned mday;
  unsigned wday;
  unsigned hour;
  unsigned minute;
  unsigned second;
  unsigned nanosecond;
} UTC;

typedef struct {
	uint64_t s;
	uint64_t ns;
} EPOCH;