⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftime.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
/*	ftime.c	4.1	83/05/31	*/#include <sys/types.h>#include <sys/time.h>/* * Backwards compatible ftime. *//* from old timeb.h */struct timeb {	time_t	time;	u_short	millitm;	short	timezone;	short	dstflag;};ftime(tp)	register struct timeb *tp;{	struct timeval t;	struct timezone tz;	if (gettimeofday(&t, &tz) < 0)		return (-1);	tp->time = t.tv_sec;	tp->millitm = t.tv_usec / 1000;	tp->timezone = tz.tz_minuteswest;	tp->dstflag = tz.tz_dsttime;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -