utvtoa.c
来自「网络时间协议NTP 源码 版本v4.2.0b 该源码用于linux平台下」· C语言 代码 · 共 27 行
C
27 行
/* * utvtoa - return an asciized representation of an unsigned struct timeval */#include <stdio.h>#include "lib_strbuf.h"#if defined(VMS)# include "ntp_fp.h"#endif#include "ntp_stdlib.h"#include "ntp_unixtime.h"char *utvtoa( const struct timeval *tv ){ register char *buf; LIB_GETBUF(buf); (void) sprintf(buf, "%lu.%06lu", (u_long)tv->tv_sec, (u_long)tv->tv_usec); return buf;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?