Tagged Questions

2
votes
2answers
285 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
276 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]; ...
0
votes
0answers
72 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
448 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
251 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
297 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 ...