date&time
hyx-work
这个作者很懒,什么都没留下…
展开
-
windows下实现gettimeofday
#include #include #include #define SECS_TO_FT_MULT 10000000static LARGE_INTEGER base_time;typedef struct win_time_val{ /** The seconds part of the time. */ long sec;原创 2012-07-20 08:16:25 · 15051 阅读 · 4 评论 -
没有gmttime&localtime api调用,怎么办?
在嵌入式开发上,又遇到过没有标准c api使用的情况没有?肯定有!#include #include #include typedef struct { int tm_sec; /* 秒 – 取值区间为[0,59] */ int tm_min; /* 分 - 取值区间为[0,59] */ int tm_hour;原创 2012-07-22 12:35:05 · 1661 阅读 · 0 评论 -
mktime 的选择
看了kernel_mktime的实现,linux/kernel/mktime.c 看了mktime的实现,include/linux/time.h 还是觉得include/linux/time.h的实现比较优雅,先上代码。static inline unsigned long mktime (unsigned int year, unsigned int mon,原创 2012-07-30 08:14:09 · 7170 阅读 · 0 评论