freebsd-dev/contrib/ntp/libntp/mfptoms.c

24 lines
323 B
C
Raw Normal View History

1999-12-09 13:01:21 +00:00
/*
* mfptoms - Return an asciized signed long fp number in milliseconds
*/
#include "ntp_fp.h"
#include "ntp_stdlib.h"
char *
mfptoms(
u_long fpi,
u_long fpf,
2004-07-20 15:01:56 +00:00
short ndec
1999-12-09 13:01:21 +00:00
)
{
int isneg;
if (M_ISNEG(fpi, fpf)) {
isneg = 1;
M_NEG(fpi, fpf);
} else
isneg = 0;
return dolfptoa(fpi, fpf, isneg, ndec, 1);
}