ReactOS 0.4.15-dev-8100-g1887773
fcvt.c
Go to the documentation of this file.
1/* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */
2#include <precomp.h>
3
4char *fcvtbuf (double, int, int *, int *, char *);
5
6/*
7 * @implemented
8 */
9char *
10_fcvt (double value, int ndigits, int *decpt, int *sign)
11{
12 static char fcvt_buf[2 * DBL_MAX_10_EXP + 10];
13 return fcvtbuf (value, ndigits, decpt, sign, fcvt_buf);
14}
char * _fcvt(double value, int ndigits, int *decpt, int *sign)
Definition: fcvt.c:10
char * fcvtbuf(double, int, int *, int *, char *)
Definition: fcvtbuf.c:123
#define DBL_MAX_10_EXP
Definition: gcc_float.h:97
#define sign(x)
Definition: mapdesc.cc:613
static size_t double int ndigits
Definition: printf.c:72
static size_t double int int * decpt
Definition: printf.c:72
Definition: pdh_main.c:94