blob: 6b613c83da7423bcfc0d9cbb319c792a2bb4b889 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf_put_none.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>
void
ft_printf_put_none(t_printflist *pflist)
{
ft_printf_put_width_pre(pflist);
ft_printf_put_width_post(pflist);
}
|