?? 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 + -