-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathutils2.c
More file actions
25 lines (22 loc) · 1.01 KB
/
utils2.c
File metadata and controls
25 lines (22 loc) · 1.01 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* utils2.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mtacnet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/08/21 11:38:41 by mtacnet #+# #+# */
/* Updated: 2017/08/21 11:39:41 by mtacnet ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
void view_tab(char **tab)
{
int i;
i = 0;
while (tab[i] && tab[i][0] != '\0')
{
ft_putendl(tab[i]);
i++;
}
}