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

📄 tvtoa.c

📁 网络时间协议NTP 源码 版本v4.2.0b 该源码用于linux平台下
💻 C
字号:
/* * tvtoa - return an asciized representation of a struct timeval */#include "lib_strbuf.h"#if defined(VMS)# include "ntp_fp.h"#endif /* VMS */#include "ntp_stdlib.h"#include "ntp_unixtime.h"#include <stdio.h>char *tvtoa(	const struct timeval *tv	){	register char *buf;	register u_long sec;	register u_long usec;	register int isneg;	if (tv->tv_sec < 0 || tv->tv_usec < 0) {		sec = -tv->tv_sec;		usec = -tv->tv_usec;		isneg = 1;	} else {		sec = tv->tv_sec;		usec = tv->tv_usec;		isneg = 0;	}	LIB_GETBUF(buf);	(void) sprintf(buf, "%s%lu.%06lu", (isneg?"-":""), sec, usec);	return buf;}

⌨️ 快捷键说明

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