/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* exec_cmd_line.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: lperrey +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/11/16 01:57:38 by lperrey #+# #+# */ /* Updated: 2021/11/18 13:29:25 by lperrey ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_01_01 int exec_cmd_line(t_all *c) { if (!pipeline(c)) { free_pipeline(&c->cmd_arr); return (0); } return (1); }