-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzero_flag.c
78 lines (67 loc) · 2.21 KB
/
zero_flag.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* zero_flag.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nrepak <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/02/07 22:04:47 by nrepak #+# #+# */
/* Updated: 2018/02/08 15:47:02 by nrepak ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_zero_decimal(int len, intmax_t i, t_flags *f)
{
char *str;
if (ft_plus_space(i, f))
{
if (ft_plus_space(i, f) == 1)
ft_putchar('+');
if (ft_plus_space(i, f) == 2)
ft_putchar('-');
if (ft_plus_space(i, f) == 3)
ft_putchar(' ');
}
ft_put_specific_char('0', f->width - len);
ft_putstr(str = ft_itoa_10(i));
ft_strdel(&str);
return (f->width);
}
int ft_zero_hexadecimal(int len, uintmax_t i, t_flags *f, char c)
{
int flag;
char *str;
str = ft_upper_lower_string(i, c);
flag = (f->slash && i) ? 2 : 0;
if (flag)
c == 'X' ? (ft_putstr("0X")) : (ft_putstr("0x"));
ft_put_specific_char('0', f->width - len);
write(1, str, ft_strlen(str));
ft_strdel(&str);
return (f->width);
}
int ft_zero_octal(uintmax_t i, t_flags *f)
{
char *str;
ft_put_specific_char('0', f->width - ft_base_len(i, 8));
ft_putstr(str = ft_itoa_unsigned(i, 8));
ft_strdel(&str);
return (f->width);
}
int ft_zero_pointer(uintmax_t i, t_flags *f, int len)
{
char *str;
ft_putstr("0x");
ft_put_specific_char('0', f->width - len - 2);
ft_putstr(str = ft_itoa_unsigned(i, 16));
ft_strdel(&str);
return (f->width);
}
int ft_zero_unsigned_decimal(uintmax_t i, t_flags *f, int len)
{
char *str;
ft_put_specific_char('0', f->width - len);
ft_putstr(str = ft_itoa_unsigned(i, 10));
ft_strdel(&str);
return (f->width);
}