/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include "lint.h"
#include "base_conversion.h"
#include "libc.h"
#include <locale.h>
static void
{
char *p;
int i;
p = buf;
*(p++) = '-';
case fp_zero:
*(p++) = '0';
if (trailing != 0) {
*(p++) = decpt;
for (i = 0; i < ndigits - 1; i++)
*(p++) = '0';
}
*p++ = 0;
break;
case fp_subnormal:
case fp_normal:
/* E format. */
int n;
*(p++) = decpt;
if (trailing == 0) {
/* Remove trailing zeros and . */
p--;
while (*p == '0')
p--;
if (*p != decpt)
p++;
}
*(p++) = 'e';
if (n >= 0)
*(p++) = '+';
else {
*(p++) = '-';
n = -n;
}
__four_digits_quick((unsigned short) n, estring);
/* Find end of zeros. */
for (i = 0; estring[i] == '0'; i++)
;
if (i > 2)
i = 2; /* Guarantee two zeros. */
for (; i <= 3; )
*(p++) = estring[i++]; /* Copy exp digits. */
} else { /* F format. */
*(p++) = decpt;
/* More follows point. */
for (; i < ndigits; )
}
} else { /* 0.00xxxx */
*(p++) = '0';
*(p++) = decpt;
*(p++) = '0';
}
if (trailing == 0) {
/* Remove trailing zeros and point. */
p--;
while (*p == '0')
p--;
if (*p != decpt)
p++;
}
}
*(p++) = 0;
break;
default:
break;
}
}
char *
{
#if defined(__sparc)
#else
#endif
if (ndigits < 0)
ndigits = 6;
else if (ndigits == 0)
ndigits = 1;
else if (ndigits >= DECIMAL_STRING_LENGTH)
return (buf);
}
char *
{
#if defined(__sparc)
#else
#endif
if (ndigits < 0)
ndigits = 6;
else if (ndigits == 0)
ndigits = 1;
else if (ndigits >= DECIMAL_STRING_LENGTH)
return (buf);
}
char *
{
#if defined(__sparc)
#else
#endif
if (ndigits < 0)
ndigits = 6;
else if (ndigits == 0)
ndigits = 1;
else if (ndigits >= DECIMAL_STRING_LENGTH)
#if defined(__sparc)
#else
#endif
return (buf);
}