-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathre_initialize.c
More file actions
executable file
·26 lines (24 loc) · 1.1 KB
/
re_initialize.c
File metadata and controls
executable file
·26 lines (24 loc) · 1.1 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
/* ************************************************************************** */
/* */
/* :::::::: */
/* re_initialize.c :+: :+: */
/* +:+ */
/* By: nsterk <nsterk@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/16 19:01:01 by nsterk #+# #+# */
/* Updated: 2020/12/28 15:52:46 by nsterk ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libftprintf.h"
void re_initialize(t_tab *tab)
{
tab->left_justify = 0;
tab->zero = 0;
tab->space = 0;
tab->plus = 0;
tab->hash = 0;
tab->precision = -1;
tab->precision_bool = 0;
tab->width = 0;
tab->lenmod = 0;
}