/* ************************************************************************** */ /* */ /* :::::::: */ /* simple_builtins.c :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/02/05 16:21:39 by whaffman #+# #+# */ /* Updated: 2025/02/26 14:42:54 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #include "minishell.h" void simple_builtins(t_minishell *minishell) { if (minishell->commands == NULL) return ; if (!builtin_router(minishell, minishell->commands->content)) executor_execute_pipeline(minishell); }