📄 get_time.c
字号:
#include <sys/time.h>#include <time.h>double get_time(void){ static struct timeval last_tv, tv; static int first = 1; static double res = 0; if (first) { gettimeofday(&last_tv, NULL); first = 0; return 0; } else { gettimeofday(&tv, NULL); res += tv.tv_sec - last_tv.tv_sec; res += (tv.tv_usec - last_tv.tv_usec) / 1000000.0; last_tv = tv; return res; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -