Tagged Questions

2
votes
4answers
376 views

How to get iso_date ( YYYYMMDD ) from time_t / timeval

Given a time_t as 1291121400, how do I get the date of that day formatted as 20101130?
1
vote
1answer
411 views

Convert RFC 822 timestamp to unixtime, timezone values not working , C/C++

I've a function which converts an RFC 822 timestamp to unixtime #include <stdio.h> #include <time.h> int main() { struct tm tm; time_t unixtime; strptime("Sun, 20 Feb 2011 10:28:02 ...
1
vote
3answers
1k views

How to decompose unix time in C

This seems like something no one should ever have to do, but I'm working on a kernel module for an embedded system (OpenWRT) in which it seems that time.h does include the timespec and time_t types, ...