您的位置:首页 > 其它

UTC 时间转换为 time_t

2012-09-26 08:48 288 查看
time_t time_gm( struct tm * tm )

{

#ifdef __FreeBSD__

return timegm( tm );

#elif (defined(__ANDROID__)) && (!defined(__SONY_ANDROID_TV__))

return ( time_t )( timegm64( tm ) );

#else

return ( mktime( tm ) - ( time_t )timezone );

#endif

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐