0
votes
0answers
50 views

Timezone with TZ Environment Variable - Safety and issues

first of all, I want to know if the changing of the TZ Environment variable is secure, I was working on it because I didn't find another method for an efficient convertion. I am not sure if TZ is ...
-1
votes
2answers
52 views

Get date from specific timezone - C

I need to get the date/time from a specific timezone without setting the TZ variable. I tried to use the gmtime and plus to the hour the difference, the issue I got with this method, is that time ...
0
votes
0answers
86 views

How to get the time zone on TZ variable format?

In some POSIX systems, a user can specify the time zone by means of the TZ environment variable. For example, here is how you would specify the Eastern time zone in the United States, including the ...
6
votes
5answers
264 views

How does one compute a time_t for the epoch in pure ISO C?

Using nothing but the C standard library (plain ISO C, no POSIX, and thus no assumption that time_t is represented in "seconds since the epoch"), what is the simplest way to get a time_t value ...
3
votes
4answers
312 views

Get the time zone GMT offset in C

I'm using the standard mktime function to turn a struct tm into an epoch time value. The tm fields are populated locally, and I need to get the epoch time as GMT. tm has a gmtoff field to allow you to ...
2
votes
2answers
186 views

linux convert time(for different timezones) to UTC

Is there a way, in linux, to problematically get UTC time for a given time string like Tue Dec 14 10:30:23 PST 2012 Tue Jan 4 11:30:23 EST 2013 to a UTC time, irrespective of( and without ...
2
votes
1answer
504 views

c/c++ strptime() does not parse %Z Timezone name

I am new to C. When I practicing C to covert time sting to structure tm back and forth. I noticed some difference. Please advice what I did wrong. #include <string.h> #include <stdio.h> ...
3
votes
2answers
170 views

Library/code for dynamically reloading the /usr/share/zoneinfo database?

Since the system /usr/share/zoneinfo database is updated fairly frequently, I would like to be able to load it (and reload it) dynamically in a very long running C++ program. Now I know the standard ...
1
vote
1answer
61 views

How do I get the timezone initials?

I am trying to create a Date header for an email. The format is as follows: DayOfWeek, Day ShortMonth Year Hours:Minutes:Seconds Offset (TimeZone) So an example would be: Fri, 19 Mar 2010 ...
0
votes
0answers
151 views

linux timezone setting issue with DST

I am writing a C application on Fedora FC3 OS. It changes the timezone by creating link to respective timezone file, and then sets the time (which is input by user) by first converting it to time ...
2
votes
1answer
349 views

Difference between mktime and timelocal

What is the difference between these two functions? It was my understanding that those should be the same: http://www.gnu.org/software/libc/manual/html_node/Broken_002ddown-Time.html. I wrote this ...
3
votes
2answers
381 views

C API to return timestring in specified time zone?

In C, there is any API which converts time returned by time() function to a specific timezone? There is a function strftime() which converts into current timezone of the system. But what I want is ...
0
votes
0answers
126 views

Java equivalent of C's _timezone, _daylight and time()

With this C code: int a = time(NULL); _daylight = 0; _timezone = 0; int b = time(NULL); assert(a != b); "a" and "b" will have different values (and not just because they are called a few ...
2
votes
1answer
400 views

What are the disadvantages to using ctime's tzset?

In a question about getting a system's time zone, this answer did not get up-voted. It suggests the use of tzset() and some system globals (e.g. daylight, timezone, and tzname) from time.h. After ...
0
votes
2answers
198 views

Get List of Time Zones Across Platforms in C

I am developing a program in C which needs to return an array of strings of all of the possible regions the computer has access to information from (ostensibly from tz database). I need to make this ...
1
vote
4answers
1k views

Is time_t returned by time() zone specific?

I am just new to <time.h> and have a question regarding to time_t and time(). I read the function time() documented as follows: time_t time ( time_t * timer ); Get current time Get the ...
3
votes
1answer
2k views

strptime in c with timezone offsets

I'm having trouble finding a way to parse the timezone out of strings like the following: "Thu, 1 Sep 2011 09:06:03 -0400 (EDT)" What I need to do in the larger scheme of my program is take in a ...
1
vote
1answer
83 views

getdate.y grammar doubts

http://www.freebsd.org/cgi/cvsweb.cgi/~checkout~/src/usr.bin/tar/Attic/getdate.y?rev=1.9.12.1;content-type=text%2Fplain;hideattic=0 I am trying to understand how yyTimezone is calculated in code ...
1
vote
4answers
142 views

Getting numeric timezone in specified format

I would like to print the current time as 2011-08-18 10:11:12 -07:00. I developed a code snippet as below, #include <iostream> using namespace std; void time_to_string(time_t clock,const char ...
4
votes
1answer
270 views

C/C++: Why the localtime display incorrectly in respect of its timezone?

I found that a strange behavior on C language recently but no idea why this happen. when I use setenv(), set the TZ to GMT+1. the output of the local time will be one hour less than UTC time. (see ...
0
votes
1answer
297 views

Is there a function to parse a POSIX timezone and validate it?

I have timezones in the format of NZST-12.00:00NZDT-13:00:00,M10.1.0,M3.3.0 or CET-1CEST,M3.5.0,M10.5.0/3 is there a function or library to parse and validate them in C?
2
votes
3answers
1k views

Detect DST flag of future date in C

I have a system where I am provided with date and time in the form of a string, for example "2011-03-13 03:05:00". I may receive this string at "2011-03-13 01:59:00" and I need to know the length of ...
2
votes
1answer
806 views

Why does localtime() set tm_isdst flag for 1 hour duration when DST ends and time falls back by one hour

I have a system configured in Moscow Time zone. Moscow goes into daylight savings time on the last sunday of March every year. Moscow Daylights Savings time (MSD) is UTC +4 hours. On the last sunday ...
0
votes
2answers
265 views

POSIX way to convert user input with utc offset to calendar time

Is there a POSIX way how to convert a user input with UTC offset into time_t? I was hoping for something like strptime( buf, "%Y-%m-%d-UTC%O", &input_time ); where %O would be the UTC offset. ...
0
votes
1answer
813 views

Linux, timezone and dst

I'm using RHEL 5.3 (linux 2.6.18) I have a legacy code that relies on timezone and dst returned by ftime(3). Now from ftime(3) man pages I see that timezone and dstflag are not supported. Also in ...
2
votes
2answers
753 views

How do you get info for an arbitrary time zone in Linux / POSIX?

Ideally, what I'd like to be able to do is take the name of a time zone and call a function to ask for its corresponding time zone info (offset from UTC, DST offset, dates for DST switch, etc.) in ...
2
votes
2answers
1k views

How do you get info for an arbitrary time zone in Windows?

Ideally, what I'd like to be able to do is take the name of a time zone and ask Windows for its corresponding time zone info (offset from UTC, DST offset, dates for DST switch, etc.). It looks like ...
3
votes
3answers
729 views

Getting current time of a different timezone using C++

How do i get the current time of a different time zone? Example, i need to know the current time in Singapore where as my system is set to PT time.
1
vote
2answers
745 views

Best way to convert Unix time_t to/from abitrary timezones?

My code receives a time_t from an external source. However, that time_t isn't acutally based on UTC Epoch time, along with it I get a timezone string (eg, EDT, PST, etc), and its based on this ...
4
votes
8answers
8k views

How do I find the current system timezone?

On Linux, I need to find the currently configured timezone as an Olsen location. I want my (C or C++) code to be portable to as many Linux systems as possible. For example. I live in London, so my ...
3
votes
2answers
442 views

Working with timezones in C

I'm currently migrating some of my code from Cocoa (Apple's Objective-C API) to C, in order to make it available for other operating systems, such as GNU/Linux. In Cocoa, there were many great things ...
4
votes
3answers
1k views

How to programatically convert a time from one timezone to another in C?

The info pages for the GNU date command contains this example: For example, with the GNU date command you can answer the question "What time is it in New York when a Paris clock shows 6:30am ...
13
votes
6answers
5k views

Time zone conversion C API on Linux, anyone?

I'm looking for something that I presumed would be very simple - given local Unix time in a specific time zone (specified as a string, e.g., "America/New_York" - note that's not my local time), get ...
4
votes
1answer
374 views

General way to manipulate the times (between timezones) in C?

After writing a sample code for the question about converting between timezones, one of the comments to it was the need for more general method for converting from timezone A to timezone B. I was ...
2
votes
3answers
2k views

Converting between timezones in C

I need to convert time between timezones in C (on linux, so anything specific would do too). I know my current time, local and UTC, I have the offset of the target time. I am trying to use mktime, ...
10
votes
4answers
16k views

Converting Between Local Times and GMT/UTC in C/C++

What's the best way to convert datetimes between local time and UTC in C/C++? By "datetime", I mean some time representation that contains date and time-of-day. I'll be happy with time_t, struct tm, ...
7
votes
4answers
3k views

Get Daylight Saving Transition Dates For Time Zones in C

In C, is there a simple, cross-platform way of retrieving the dates that a given timezone begins and ends daylight saving? I already have timezone offset information and whether or not daylight ...
6
votes
3answers
1k views

Why does glibc “timezone” global not agree with system time on DST?

I'm experiencing a bizarre issue where my system clock knows that it's daylight savings time, but glibc seems not to. This is an up-to-date Ubuntu installation, and I have checked /etc/localtime and ...
2
votes
1answer
1k views

How do I convert GMT to LocalTime in Win32 C?

I want to convert various location/date/times in history from GMT to local time. It seems that SystemTimeToTzSpecificLocalTime is better than FileTimeToLocalFileTime. When the date/time pairs also ...