ttime.c

来自「一个很有名的浏览器」· C语言 代码 · 共 29 行

C
29
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?