前端之家收集整理的这篇文章主要介绍了
c – 64位unix时间戳转换,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
32位系统是否有64位unix时间戳转换的C实现?我需要将struct tm转换为64位整数,反之亦然,
包括闰年,时区,UTC.还需要它可移植,至少对于GNU /
Linux和Windows.
你需要:
typedef long long time64_t;
time64_t mktime64 (struct tm *t);
struct tm *localtime64_r (const time64_t *t,struct tm *p);
原文链接:https://www.f2er.com/c/115399.html