fcvt.c\stdlib\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdlib/fcvt.c
blob: f90928fe160de88fa783d10bd0f10b44ac833950 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
char *fcvt(double x, int n, int *dp, int *sign)
{
	char tmp[1500];
	int i, lz;
	if (n > 1400U) n = 1400;
	sprintf(tmp, "%.*f", n, x);
	i = (tmp[0] == '-');
	if (tmp[i] == '0') lz = strspn(tmp+i+2, "0");
	else lz = -(int)strcspn(tmp+i, ".");
	if (n<=lz) {
		*sign = i;
		*dp = 1;
		if (n>14U) n = 14;
		return "000000000000000"+14-n;
	}
	return ecvt(x, n-lz, dp, sign);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 16:48:55 +0000

AltStyle によって変換されたページ (->オリジナル) /