C++音视频

代码改变世界

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2018年9月15日

摘要: #include <sys/time.h> #include <unistd.h> void print_time(void) { time_t curr_time; time(&curr_time); struct tm *ptm = localtime(&curr_time); struct t 阅读全文
posted @ 2018-09-15 16:42 shunxiang 阅读(231) 评论(0) 推荐(0) 编辑