20 lines
996 B
C
20 lines
996 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* pprint_if.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/03/16 16:53:20 by jhalford #+# #+# */
|
|
/* Updated: 2017/03/16 16:53:21 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
int pprint_if(t_process *p)
|
|
{
|
|
(void)p;
|
|
ft_putstr("IF GROUP");
|
|
return (0);
|
|
}
|