摘要: #include <time.h> void get_time_str(char* name) { time_t timep; struct tm *p; time(&timep); p = gmtime(&timep); clock_t t = clock(); int ms = t * 1000 阅读全文
posted @ 2020-12-21 09:30 wioponsen 阅读(2525) 评论(0) 推荐(0) 编辑