/contrib/ntp/libntp/utvtoa.c
https://bitbucket.org/freebsd/freebsd-head/ · C · 26 lines · 18 code · 5 blank · 3 comment · 0 complexity · 467d07043b40c9235e8c4929d34c9958 MD5 · raw file
- /*
- * 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;
- }