/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* exit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/01 17:10:16 by charles #+# #+# */ /* Updated: 2020/04/01 17:10:17 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" /* ** \file exit.c ** \brief `exit` builtin */ int builtin_exit(char **argv, t_env env) { (void)argv; (void)env; return (0); }