-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumber_to_string_f.c
103 lines (92 loc) · 2.27 KB
/
number_to_string_f.c
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* number_to_string_f.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gmelisan <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/28 16:29:19 by gmelisan #+# #+# */
/* Updated: 2019/01/30 15:24:17 by gmelisan ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
/*
** 123.456 (double) -> 1.234566 (double)
*/
void normalize_f(long double *n, int *digits)
{
*digits = 1;
while (*n >= 10)
{
*n = *n / 10;
(*digits)++;
}
}
/*
** 1.23456 (double) -> 123.456 (char *)
*/
static void shift_point(long double n, char *str,
int len, int digits)
{
int i;
long double sub;
int d;
i = 0;
d = (int)n;
str[i++] = d + '0';
sub = (long double)d;
while (i < len)
{
if (i == digits)
str[i++] = '.';
n = n * 10;
sub = sub * 10;
d = n - sub;
sub += d;
str[i++] = d + '0';
}
}
/*
** prec = 2
** 123.456 -> 123.46
** 123.496 -> 123.50
** 123.999 -> 124.00
*/
void round_str(char *str, int i, int carry)
{
int prev;
prev = i - 1;
if (str[prev] == '.')
prev--;
if (prev < 0)
return ;
if (str[i] >= '5' || carry)
{
if (str[prev] == '9')
{
str[prev] = '0';
round_str(str, prev, 1);
}
else
str[prev]++;
}
}
void number_to_string_f(t_conversion *conv, long double n)
{
int digits;
int len;
digits = 0;
if (n < 0)
n = -n;
normalize_f(&n, &digits);
if (conv->prec_set && conv->precision == 0)
len = digits + 1 + 1;
else
len = digits + 1 + conv->precision + 1;
conv->out = ft_strnew(len);
shift_point(n, conv->out, len, digits);
round_str(conv->out, len - 1, 0);
conv->out[len - 1] = '\0';
if (conv->prec_set && conv->precision == 0 && !conv->flags.hash)
conv->out[len - 2] = '\0';
}