-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert_float.c
84 lines (76 loc) · 2.29 KB
/
convert_float.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* convert_float.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gmelisan <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/24 11:57:16 by gmelisan #+# #+# */
/* Updated: 2019/01/29 17:58:50 by gmelisan ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
static void add_zeros(t_conversion *conv)
{
char *newstr;
size_t len;
size_t newlen;
len = ft_strlen(conv->out);
newlen = 0;
if (conv->flags.minus)
conv->flags.zero = 0;
if (conv->flags.zero && conv->width > len)
newlen = conv->width - 1;
if (newlen > len)
{
newstr = ft_strnew(newlen);
ft_memset(newstr, '0', newlen);
ft_memcpy(newstr + (newlen - len), conv->out, len);
ft_strdel(&(conv->out));
conv->out = newstr;
}
}
static void add_sign(t_conversion *conv, long double n)
{
char *newstr;
newstr = NULL;
if (n < 0)
newstr = ft_strjoin("-", conv->out);
else if (conv->flags.plus)
newstr = ft_strjoin("+", conv->out);
else if (conv->flags.space)
newstr = ft_strjoin(" ", conv->out);
if (newstr)
{
ft_strdel(&(conv->out));
conv->out = newstr;
}
}
static void add_spaces(t_conversion *conv)
{
char *newstr;
int len;
int newlen;
len = ft_strlen(conv->out);
newlen = conv->width;
if (newlen > len)
{
newstr = prepare_out(conv, newlen);
if (conv->flags.minus)
ft_memcpy(newstr, conv->out, len);
else
ft_memcpy(newstr + (newlen - len), conv->out, len);
ft_strdel(&(conv->out));
conv->out = newstr;
}
}
void convert_float(t_conversion *conv, long double n)
{
if (ft_tolower(conv->type) == 'f')
number_to_string_f(conv, n);
else if (ft_tolower(conv->type) == 'e')
number_to_string_e(conv, n);
add_zeros(conv);
add_sign(conv, n);
add_spaces(conv);
}