-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathzone_registry.h
95 lines (89 loc) · 1.93 KB
/
zone_registry.h
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// This file was generated by the following script:
//
// $ /home/brian/src/AceTimeTools/src/acetimetools/tzcompiler.py
// --input_dir /home/brian/src/AceTime/src/zonedb/tzfiles
// --output_dir /home/brian/src/AceTime/src/zonedb
// --tz_version 2024b
// --action zonedb
// --language arduino
// --scope basic
// --db_namespace zonedb
// --start_year 2000
// --until_year 2200
//
// using the TZ Database files
//
// africa
// antarctica
// asia
// australasia
// backward
// etcetera
// europe
// northamerica
// southamerica
//
// from https://github.com/eggert/tz/releases/tag/2024b
//
// Supported Zones: 447 (216 zones, 231 links)
// Unsupported Zones: 149 (123 zones, 26 links)
//
// Requested Years: [2000,2200]
// Accurate Years: [2000,32767]
//
// Original Years: [1844,2087]
// Generated Years: [1950,2023]
// Lower/Upper Truncated: [True,False]
//
// Estimator Years: [1950,2025]
// Max Buffer Size: 6
//
// Records:
// Infos: 447
// Eras: 228
// Policies: 64
// Rules: 363
//
// Memory (8-bits):
// Context: 16
// Rules: 3267
// Policies: 192
// Eras: 2508
// Zones: 2808
// Links: 3003
// Registry: 894
// Formats: 175
// Letters: 29
// Fragments: 116
// Names: 4152 (original: 6511)
// TOTAL: 17160
//
// Memory (32-bits):
// Context: 24
// Rules: 4356
// Policies: 512
// Eras: 3648
// Zones: 5184
// Links: 5544
// Registry: 1788
// Formats: 175
// Letters: 41
// Fragments: 138
// Names: 4152 (original: 6511)
// TOTAL: 25562
//
// DO NOT EDIT
#ifndef ACE_TIME_ZONEDB_ZONE_REGISTRY_H
#define ACE_TIME_ZONEDB_ZONE_REGISTRY_H
#include <zoneinfo/infos.h>
namespace ace_time {
namespace zonedb {
// Zones
const uint16_t kZoneRegistrySize = 216;
extern const basic::ZoneInfo* const kZoneRegistry[216];
// Zones and Links
const uint16_t kZoneAndLinkRegistrySize = 447;
extern const basic::ZoneInfo* const kZoneAndLinkRegistry[447];
}
}
#endif