-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterate_flags.c
102 lines (94 loc) · 2.99 KB
/
iterate_flags.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* iterate_flags.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abkssiba <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/12/04 12:54:05 by abkssiba #+# #+# */
/* Updated: 2019/12/13 17:41:07 by abkssiba ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int is_specifier(char c)
{
if (c == 'c' || c == 's' || c == '%')
return (1);
if (c == 'p' || c == 'd' || c == 'i' || c == 'u'
|| c == 'x' || c == 'X')
return (1);
return (0);
}
int is_not_specifier(char c)
{
char *tmp;
int i;
i = 0;
tmp = "abefghjklmnoqrtvwyz%";
while (tmp[i])
{
if (tmp[i] == c)
return (1);
i++;
}
return (0);
}
void initialize_flags(t_flags *flg)
{
flg->minus = 0;
flg->zero = 0;
flg->width = 0;
flg->precision = -1;
flg->specifier = 0;
flg->skip_flags = 0;
}
void manage_flag(const char *str, t_flags *flg, char c, int i)
{
if (is_not_specifier(str[i]))
flg->specifier = str[i];
flg->skip_flags = i;
if (flg->minus && flg->zero)
flg->zero = 0;
if (is_specifier(c))
flg->specifier = c;
if (flg->specifier == 's')
flg->zero = 0;
if (flg->width < 0)
{
flg->width *= -1;
flg->minus = 1;
}
if ((flg->precision >= 0 && flg->specifier == 'c') || flg->specifier == 'p')
flg->precision = -1;
if ((flg->precision == -1 && flg->zero && flg->width) &&
(flg->specifier == 'x' || flg->specifier == 'x'))
flg->precision = flg->width;
}
int g_i;
void get_flags(const char *str, va_list *arg, t_flags *flg)
{
g_i = 1;
while (!is_specifier(str[g_i]) && !is_not_specifier(str[g_i]) && str[g_i])
{
if (str[g_i] == '-')
flg->minus = 1;
else if (str[g_i] == '0' && str[g_i - 1] == '%')
flg->zero = 1;
else if ((str[g_i] == '*' && (str[g_i - 1] == '%' || str[g_i - 1] == '-'
|| str[g_i - 1] == '0' || ft_isdigit(str[g_i - 1])))
|| (str[g_i] == '*' && str[g_i + 1] == '.'))
flg->width = va_arg(*arg, int);
else if (str[g_i] == '*' && str[g_i - 1] == '.')
flg->precision = va_arg(*arg, int);
else if (str[g_i] == '.' && str[g_i + 1] != '*')
flg->precision = ft_atoi(str + g_i + 1);
else if (((!flg->width) && (str[g_i - 1] == '%' || str[g_i - 1] == '-'
|| str[g_i - 1] == '0')) || (!flg->width && ft_isdigit(str[g_i])
&& str[g_i - 1] != '.') || (str[g_i - 1] == '*' && ft_isdigit(str[g_i])))
flg->width = ft_atoi(str + g_i);
if (flg->width < 0 && flg->minus == 0)
flg->minus = 1;
g_i++;
}
manage_flag(str, flg, str[g_i], g_i);
}