-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinitialize_t_bag_variables.c
More file actions
28 lines (26 loc) · 1.16 KB
/
initialize_t_bag_variables.c
File metadata and controls
28 lines (26 loc) · 1.16 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* initialize_t_bag_variables.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hiroshiusui <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/01/31 02:37:54 by hiroshius #+# #+# */
/* Updated: 2018/01/31 02:52:00 by hiroshius ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void initialize_t_bag_variables(t_bag *bag)
{
g_is_print_p = 0;
bag->number_sign = 0;
bag->zero = 0;
bag->minus = 0;
bag->plus = 0;
bag->space = 0;
bag->period = 0;
bag->width = 0;
bag->precision = 0;
bag->length_modifier = "";
bag->format_conversion = 0;
}