freebsd-dev/contrib/ntp/libntp/mfptoa.c
1999-12-09 13:01:21 +00:00

24 lines
323 B
C

/*
* mfptoa - Return an asciized representation of a signed long fp number
*/
#include "ntp_fp.h"
#include "ntp_stdlib.h"
char *
mfptoa(
u_long fpi,
u_long fpf,
int ndec
)
{
int isneg;
if (M_ISNEG(fpi, fpf)) {
isneg = 1;
M_NEG(fpi, fpf);
} else
isneg = 0;
return dolfptoa(fpi, fpf, isneg, ndec, 0);
}