snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit aa2539104d1a2c0c0bc985d269255fe7c3e00715
parent c1cf7b28cf85e698993468e5b8dcb18d9f5d7a74
Author: default <nobody@localhost>
Date:   Wed, 16 Apr 2025 05:05:51 +0200

Also added UTC+... timezones.

Diffstat:
Mxs_time.h | 27+++++++++++++++++++++++++++
1 file changed, 27 insertions(+), 0 deletions(-)

diff --git a/xs_time.h b/xs_time.h @@ -148,6 +148,33 @@ struct { { "AEDT (Australian Daylight Eastern Time)", 11 }, { "NZST (New Zealand Time)", 12 }, { "NZDT (New Zealand Daylight Time)", 13 }, + { "UTC", 0 }, + { "UTC+1", 1 }, + { "UTC+2", 2 }, + { "UTC+3", 3 }, + { "UTC+4", 4 }, + { "UTC+5", 5 }, + { "UTC+6", 6 }, + { "UTC+7", 7 }, + { "UTC+8", 8 }, + { "UTC+9", 9 }, + { "UTC+10", 10 }, + { "UTC+11", 11 }, + { "UTC+12", 12 }, + { "UTC-1", -1 }, + { "UTC-2", -2 }, + { "UTC-3", -3 }, + { "UTC-4", -4 }, + { "UTC-5", -5 }, + { "UTC-6", -6 }, + { "UTC-7", -7 }, + { "UTC-8", -8 }, + { "UTC-9", -9 }, + { "UTC-10", -10 }, + { "UTC-11", -11 }, + { "UTC-12", -12 }, + { "UTC-13", -13 }, + { "UTC-14", -14 }, { "GMT", 0 }, { "GMT+1", -1 }, { "GMT+2", -2 },