-
Notifications
You must be signed in to change notification settings - Fork 0
/
init_format_info.c
23 lines (21 loc) · 1.08 KB
/
init_format_info.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* init_format_info.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: monoue <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/08/20 12:52:06 by monoue #+# #+# */
/* Updated: 2020/08/24 09:25:48 by monoue ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void init_format_info(t_format_info *info)
{
info->min_width = NOT_SET;
info->minus = false;
info->zero = false;
info->precision = NOT_SET;
info->c_null = false;
info->value = NULL;
}