-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printd_utils.c
112 lines (107 loc) · 2.69 KB
/
ft_printd_utils.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
104
105
106
107
108
109
110
111
112
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printd_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: okimdil <okimdil@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/19 19:33:40 by okimdil #+# #+# */
/* Updated: 2019/11/19 19:33:42 by okimdil ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void ft_printud_both(int d, t_flags flags, int *counter)
{
g_spaces = flags.width - flags.precision;
g_o = flags.precision - ft_len(d);
if (flags.dash == 0)
{
while (g_spaces-- > 0)
ft_putchar(' ', counter);
while (g_o-- > 0)
ft_putchar('0', counter);
ft_putnbr(d, counter);
}
else
{
while (g_o-- > 0)
ft_putchar('0', counter);
ft_putnbr(d, counter);
while (g_spaces-- > 0)
ft_putchar(' ', counter);
}
}
void ft_printsd_both(int d, t_flags flags, int *counter)
{
d *= -1;
g_spaces = flags.width - flags.precision - 1;
g_o = flags.precision - ft_len(d);
if (flags.dash == 0)
{
while (g_spaces-- > 0)
ft_putchar(' ', counter);
ft_putchar('-', counter);
while (g_o-- > 0)
ft_putchar('0', counter);
ft_putnbr(d, counter);
}
else
{
ft_putchar('-', counter);
while (g_o-- > 0)
ft_putchar('0', counter);
ft_putnbr(d, counter);
while (g_spaces-- > 0)
ft_putchar(' ', counter);
}
}
void ft_printsd_width(int d, t_flags flags, int *counter)
{
if (d >= 0)
{
g_spaces = flags.width - ft_len(d);
if (flags.dash == 0)
{
while (g_spaces-- > 0)
{
if (flags.zero == 1)
ft_putchar('0', counter);
else
ft_putchar(' ', counter);
}
ft_putnbr(d, counter);
}
else
{
ft_putnbr(d, counter);
while (g_spaces-- > 0)
ft_putchar(' ', counter);
}
}
}
void ft_printud_width(int d, t_flags flags, int *counter)
{
g_spaces = flags.width - ft_len(d * -1) - 1;
if (flags.dash == 0)
{
if (flags.zero == 1)
{
ft_putchar('-', counter);
while (g_spaces-- > 0)
ft_putchar('0', counter);
ft_putnbr(d * -1, counter);
}
else
{
while (g_spaces-- > 0)
ft_putchar(' ', counter);
ft_putnbr(d, counter);
}
}
else if (flags.dash == 1)
{
ft_putnbr(d, counter);
while (g_spaces-- > 0)
ft_putchar(' ', counter);
}
}