Tagged Questions
2
votes
2answers
332 views
C: How to print a particular `time` value in a particular timezone (by offset)?
I'm writing an application in C that parses data files recorded by an external program (over which I have no control). It's storing binary data, one field of which is a time in standard UNIX "epoch" ...
2
votes
6answers
299 views
How Do I Get Yesterday's Date In C?
I am wanting to get yesterday's date into a char in the format: YYYYMMDD (with no slashes dots etc.).
I am using this code to get today's date:
time_t now;
struct tm *ts;
char yearchar[80];
...
1
vote
1answer
46 views
localtime() and gmtime() seem to be mucking up my input stream C++/C
I'm having problems converting from unix epoch time to a character array. I know how to do it and the conversion is happening correctly but after I make a call to gmtime() or localtime(), all input ...
0
votes
0answers
80 views
get system time using a func that does not calls malloc internally
in glibc malloc i am trying to maintain a time stamp per allocation. There is a separate hash table which i have created in glibc itself stores this timestamp entries. The format of the timestamp is ...
0
votes
1answer
490 views
Accurate Timestamps using gettimeofday and localtime
I'm attempting to monitor system time elapsed across multiple applications and data paths via gettimeoday and localtime. In this example, I want to grab the system time (microsecond percision) right ...
0
votes
2answers
300 views
get the current time in C
I want to get the current time of my system. For that i'm using the following code in C.
time_t now;
struct tm *mytime = localtime(&now);
if ( strftime(buffer, sizeof buffer, "%X", mytime) )
...
0
votes
3answers
301 views
Replacing time() and localtime() with user-independent equivalents
I have a program that uses time() and localtime() to set an internal clock, but this needs to be changed so that the internal clock is independent of the user and the "real" time. I need to be able ...