mirror of
https://github.com/reactos/reactos.git
synced 2025-06-17 00:18:29 +00:00
14 lines
332 B
C
14 lines
332 B
C
/* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */
|
|
#include <precomp.h>
|
|
|
|
char *ecvtbuf (double, int, int *, int *, char *);
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
char *
|
|
_ecvt (double value, int ndigits, int *decpt, int *sign)
|
|
{
|
|
static char ecvt_buf[DBL_MAX_10_EXP + 10];
|
|
return ecvtbuf (value, ndigits, decpt, sign, ecvt_buf);
|
|
}
|