将十进制时间表示转换为unix时期

Hab*_*usa 3 c unix

我有一个时间存储在20110103101419形式的64位int(即代表2011-01-03 10:14:19).自1970年以来如何将其转换为秒?

ivy*_*ivy 6

我的C有点生疏,但看看另外两个答案,我会写一个函数如下,返回epoch后的秒数或-1出错的情况.

#include <stdio.h>
#include <time.h>

time_t convertDecimalTime(long dt) {
  struct tm time_str;

  time_str.tm_isdst = -1;
  time_str.tm_sec   = dt%100; dt/=100;
  time_str.tm_min   = dt%100; dt/=100;
  time_str.tm_hour  = dt%100; dt/=100;
  time_str.tm_mday  = dt%100; dt/=100;
  time_str.tm_mon   = dt%100-1; dt/=100;
  time_str.tm_year  = dt%10000 - 1900;

  return mktime(&time_str);
}
Run Code Online (Sandbox Code Playgroud)