📄 ttime.c
字号:
/* Time operations *//* $Id: ttime.c,v 1.7.14.1 2005/02/28 01:21:35 jonas Exp $ */#ifdef HAVE_CONFIG_H#include "config.h"#endif#ifdef HAVE_SYS_TIME_H#include <sys/time.h>#endif#ifdef HAVE_TIME_H#include <time.h>#endif#include "elinks.h"#include "osdep/win32/win32.h" /* For gettimeofday stub */#include "util/ttime.h"ttimeget_time(void){ struct timeval tv; gettimeofday(&tv, NULL); return (ttime) tv.tv_sec * 1000 + tv.tv_usec / 1000;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -