当前位置: 技术问答>linux和unix
如何获取系统的时区
来源: 互联网 发布时间:2015-08-22
本文导语: 这个东西在windows下很容易用winapi实现,但是linux我就不知道了,哪位知道请给出源码,谢谢 | man gettimeofday int gettimeofday(struct timeval *tv, struct timezone *tz); struct timezone { ...
这个东西在windows下很容易用winapi实现,但是linux我就不知道了,哪位知道请给出源码,谢谢
|
man gettimeofday
int gettimeofday(struct timeval *tv, struct timezone *tz);
struct timezone {
int tz_minuteswest; /* minutes W of Greenwich */
int tz_dsttime; /* type of dst correction */
};
int gettimeofday(struct timeval *tv, struct timezone *tz);
struct timezone {
int tz_minuteswest; /* minutes W of Greenwich */
int tz_dsttime; /* type of dst correction */
};