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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf_use_flags.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:06:45 by joelecle #+# #+# */
/* Updated: 2020/02/14 17:06:45 by joelecle ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <stdlib.h>
static void
ft_printf_noflags(const char *format,
int pos,
va_list arg,
t_printflist *pflist)
{
ft_printf_process(format + pos, arg, pflist);
}
static void
ft_printf_withflags(const char *format,
int pos,
va_list arg,
t_printflist *pflist)
{
ft_memdel((void**)&pflist->fullflag);
pflist->fullflag = ft_printf_get_flags(format, pos, pflist);
ft_printf_treat_flags(arg, pflist);
ft_printf_process(format + pos, arg, pflist);
}
int
ft_printf_flags(const char *format,
int pos,
va_list arg,
t_printflist *pflist)
{
int plen;
plen = 0;
if (ft_ischarset(FT_PRINTF_CONV_CHARSET, *(format + pos + 1)))
{
ft_printf_noflags(format, pos, arg, pflist);
plen = ft_printf_get_partlen(format + pos + 2);
ft_printf_putpart(format, pos + 2, plen, pflist);
if (plen == (int)ft_strlen(format + pos + 2))
return (-1);
else
return (pos + plen + 2);
}
else
{
ft_printf_withflags(format, pos, arg, pflist);
plen = ft_printf_get_partlen(format + pos + pflist->flaglen + 2);
ft_printf_putpart(format, pos + pflist->flaglen + 2,
plen, pflist);
if (plen == (int)ft_strlen(format + pos + pflist->flaglen + 2))
return (-1);
else
return (pos + plen + pflist->flaglen + 2);
}
}
|