-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathox_specifier.c
94 lines (87 loc) · 2.49 KB
/
ox_specifier.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* o_specifier.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jinpark <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/15 17:45:28 by jinpark #+# #+# */
/* Updated: 2019/04/26 16:27:34 by jinpark ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int o_specifier(char *str, va_list *ap, t_store *a, int i)
{
unsigned int di;
int j;
char *temp;
di = di_get_value(ap, a);
temp = itoa_base(di, OCTET);
a->len = ft_strlen(temp);
j = res_handler(a);
a->wid = width_handler(a);
if (str[i + 1] == '-')
d_minus_print_func(temp, a);
else if (str[i + 1] == '0')
d_print_func_zero(temp, a);
else if (str[i + 1] == '#' && di != 0)
o_print_func_hash(temp, a);
else
d_print_func(temp, a);
if (str[i + 1] == '#' && di != 0)
j += 1;
free(temp);
return (j);
}
int x_specifier(char *str, va_list *ap, t_store *a, int i)
{
int64_t di;
int j;
char *temp;
di = di_get_value(ap, a);
if (di > U_MAX)
temp = p_itoa_base(di, HEXA);
else
temp = itoa_base(di, HEXA);
a->len = ft_strlen(temp);
j = res_handler(a);
a->wid = width_handler(a);
if (str[i + 1] == '-')
d_minus_print_func(temp, a);
else if (str[i + 1] == '0')
d_print_func_zero(temp, a);
else if (str[i + 1] == '#')
d_print_func_hash(temp, a);
else
d_print_func(temp, a);
if (str[i + 1] == '#')
j += 2;
free(temp);
return (j);
}
int bx_specifier(char *str, va_list *ap, t_store *a, int i)
{
int64_t di;
int j;
char *temp;
di = di_get_value(ap, a);
if (di > U_MAX)
temp = p_itoa_base(di, HEXA);
else
temp = big_itoa_base(di, HEXA);
a->len = ft_strlen(temp);
j = res_handler(a);
a->wid = width_handler(a);
if (str[i + 1] == '-')
d_minus_print_func(temp, a);
else if (str[i + 1] == '0')
d_print_func_zero(temp, a);
else if (str[i + 1] == '#')
d_print_func_bhash(temp, a);
else
d_print_func(temp, a);
if (str[i + 1] == '#')
j += 2;
free(temp);
return (j);
}