-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwidth_and_precision.c
111 lines (100 loc) · 2.32 KB
/
width_and_precision.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* width.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nrepak <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/01/24 12:41:49 by nrepak #+# #+# */
/* Updated: 2018/02/07 15:35:32 by nrepak ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
static int ft_find_len_w(const char *str)
{
int i;
int len;
i = 0;
len = 0;
while (str[i] && str[i] != '.' && !(ft_conversions(str[i])))
{
if (ft_isdigit(str[i]))
len++;
i++;
}
return (len);
}
static int ft_find_len_p(const char *str)
{
int i;
int len;
i = 0;
len = 0;
while (str[i] && str[i] != '.' && !(ft_conversions(str[i])))
i++;
while (str[i] && !(ft_conversions(str[i])))
{
if (ft_isdigit(str[i]))
len++;
i++;
}
return (len);
}
int ft_check_width(const char *str)
{
char *num;
int i;
int j;
i = 0;
j = 0;
num = ft_strnew(ft_find_len_w(str) + 1);
while (str[i] && str[i] != '.' && !(ft_conversions(str[i])))
{
if (ft_isdigit(str[i]))
{
num[j] = str[i];
j++;
}
i++;
}
num[j] = '\0';
j = ft_atoi(num);
ft_strdel(&num);
return (j);
}
int ft_check_precision(const char *str)
{
char *num;
int i;
int j;
i = 0;
j = 0;
num = ft_strnew(ft_find_len_p(str) + 1);
while (str[i] && str[i] != '.' && !(ft_conversions(str[i])))
i++;
while (str[i] && !(ft_conversions(str[i])))
{
if (ft_isdigit(str[i]))
{
num[j] = str[i];
j++;
}
i++;
}
num[j] = '\0';
j = ft_atoi(num);
ft_strdel(&num);
return (j);
}
void ft_zero_precision(const char *str, t_flags *f)
{
int i;
i = 0;
f->zero_precision = 0;
while (str[i] && !(ft_conversions(str[i])))
{
if (str[i] == '.' && (!(ft_isdigit(str[i + 1])) || str[i + 1] == '0'))
f->zero_precision = 1;
i++;
}
}