/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_f_file.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include #include #include "ft_s_lcom.h" #include "ft_s_destroy.h" void ft_f_file(const char path[], t_msh *msh) { if (errno == ENOENT) { ft_dprintf(STDERR_FILENO, "minishell: %s: No such file or directory\n", path); } else if (errno == EACCES) { ft_dprintf(STDERR_FILENO, "minishell: %s: Permission denied\n", path); } else if (errno == EISDIR) { ft_dprintf(STDERR_FILENO, "minishell: %s: Is a directory\n", path); } ft_lcom_clear(&msh->curr); ft_s_destroy(msh); exit(1); }