-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinitialize.c
More file actions
executable file
·27 lines (25 loc) · 1.11 KB
/
initialize.c
File metadata and controls
executable file
·27 lines (25 loc) · 1.11 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
/* ************************************************************************** */
/* */
/* :::::::: */
/* initialize.c :+: :+: */
/* +:+ */
/* By: nsterk <nsterk@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/09 20:21:36 by nsterk #+# #+# */
/* Updated: 2020/12/29 18:17:34 by nsterk ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libftprintf.h"
void initialize(t_tab *tab)
{
tab->zero = 0;
tab->left_justify = 0;
tab->space = 0;
tab->plus = 0;
tab->hash = 0;
tab->precision = -1;
tab->precision_bool = 0;
tab->width = 0;
tab->lenmod = 0;
tab->ret = 0;
}