42-archive/42sh/src/job-control/pprint_if.c
2017-03-16 18:46:27 +01:00

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);
}