-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_nullstring.c
140 lines (130 loc) · 2.96 KB
/
ft_nullstring.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_nullstring.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: larmelli <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/02/25 17:07:23 by larmelli #+# #+# */
/* Updated: 2021/02/25 17:07:27 by larmelli ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_libftprintf.h"
int ft_snull(int k)
{
char s[7];
int i;
int count;
i = 0;
count = 0;
s[0] = '(';
s[1] = 'n';
s[2] = 'u';
s[3] = 'l';
s[4] = 'l';
s[5] = ')';
s[6] = 0;
while (k-- && s[i])
{
count += ft_putchar(s[i]);
i++;
}
s[i] = 0;
return (count);
}
int ft_nullstring4(t_flags *flags, int count)
{
if (flags->prec == -1)
count += ft_snull(flags->prec);
else
{
if (flags->minus == 1)
{
count += ft_snull(flags->prec);
count += ft_print_space(flags->width - flags->prec);
}
else
{
count += ft_print_space(flags->width - flags->prec);
count += ft_snull(flags->prec);
}
}
return (count);
}
int ft_nullstring3(t_flags *flags)
{
int count;
count = 0;
if (flags->width > 6 && flags->prec == -1)
{
if (flags->minus == 1)
{
count += ft_snull(6);
count += ft_print_space(flags->width - 6);
}
else
{
count += ft_print_space(flags->width - 6);
count += ft_snull(6);
}
}
else if (flags->prec > 6)
{
count += ft_snull(flags->prec);
count += ft_print_space(flags->width - 6);
}
else
count = ft_nullstring4(flags, count);
return (count);
}
int ft_nullstring2(t_flags *flags)
{
int count;
count = 0;
if (flags->minus == 1 && flags->width < 6)
{
if (flags->prec > 6)
{
count += ft_snull(flags->prec);
count += ft_print_space(flags->width - 6);
}
else
{
if (flags->prec == -1)
count += ft_snull(flags->prec);
else if (flags->prec > -1)
{
count += ft_snull(flags->prec);
count += ft_print_space(flags->width - flags->prec);
}
}
}
else
count += ft_nullstring3(flags);
return (count);
}
int ft_nullstring(t_flags *flags)
{
int count;
count = 0;
if (flags->width > flags->prec)
count += ft_nullstring2(flags);
else if (flags->width <= flags->prec)
{
if (flags->width < 6)
count += ft_snull(flags->prec);
else if (flags->minus == 1)
{
count += ft_snull(flags->prec);
count += ft_print_space(flags->width - 6);
}
else
{
count += ft_print_space(flags->width - 6);
count += ft_snull(flags->prec);
}
}
else
count += ft_snull(flags->prec);
return (count);
}