42-archive/42sh/src/exec/plaunch_brace.c

19 lines
1,002 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* plaunch_brace.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/03/13 19:09:30 by jhalford #+# #+# */
/* Updated: 2017/03/21 00:52:20 by wescande ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
int plaunch_brace(t_process *p)
{
ft_exec(&p->data.brace.content);
return (0);
}