mirror of
https://github.com/reactos/reactos.git
synced 2025-08-10 16:35:29 +00:00

- Removed lib/interlck and lib/string. - Removed math routines from lib/rtl. - Created a new library called libcntpr which is what NT/WDK use when compiling the kernel/system libraries. This is an "NT-Private" version of the CRT which is supposed to contain what we had in lib/string and lib/rtl. svn path=/trunk/; revision=26095
32 lines
725 B
C
32 lines
725 B
C
/* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */
|
|
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
char *
|
|
_gcvt (double value, int ndigits, char *buf)
|
|
{
|
|
char *p = buf;
|
|
|
|
sprintf (buf, "%-#.*g", ndigits, value);
|
|
|
|
/* It seems they expect us to return .XXXX instead of 0.XXXX */
|
|
if (*p == '-')
|
|
p++;
|
|
if (*p == '0' && p[1] == '.')
|
|
memmove (p, p + 1, strlen (p + 1) + 1);
|
|
|
|
/* They want Xe-YY, not X.e-YY, and XXXX instead of XXXX. */
|
|
p = strchr (buf, 'e');
|
|
if (!p)
|
|
{
|
|
p = buf + strlen (buf);
|
|
/* They don't want trailing zeroes. */
|
|
while (p[-1] == '0' && p > buf + 2)
|
|
*--p = '\0';
|
|
}
|
|
if (p > buf && p[-1] == '.')
|
|
memmove (p - 1, p, strlen (p) + 1);
|
|
return buf;
|
|
}
|