42-archive/42sh/src/job_control/pprint_until.c
2017-03-19 13:37:17 +01:00

20 lines
1,002 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* pprint_until.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/16 16:53:43 by jhalford #+# #+# */
/* Updated: 2017/03/16 16:53:43 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
int pprint_until(t_process *p)
{
(void)p;
ft_putstr("UNTIL GROUP");
return (0);
}