2017年11月2日
摘要: 1 #include 2 #include 3 4 char* cur_time_c(char strDateTime[32]) 5 { 6 struct timeb tp_cur; 7 ftime(&tp_cur); 8 9 struct tm btm; 10 11 #ifdef WIN32 12 localtime_s(&btm, ... 阅读全文
posted @ 2017-11-02 17:47 独孤酷酷 阅读(4251) 评论(0) 推荐(0) 编辑