-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_tabnew.c
20 lines (18 loc) · 983 Bytes
/
ft_tabnew.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_tabnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thifranc <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/04/18 12:57:07 by thifranc #+# #+# */
/* Updated: 2016/04/18 12:57:57 by thifranc ### ########.fr */
/* */
/* ************************************************************************** */
void ft_tabnew(int *tab, int size)
{
int i;
i = 0;
while (i < size)
tab[i++] = 0;
}