diff options
Diffstat (limited to '')
-rw-r--r-- | src/f_fail.c (renamed from src/ft_f_fail.c) | 32 |
1 files changed, 12 insertions, 20 deletions
diff --git a/src/ft_f_fail.c b/src/f_fail.c index 3f43bae..3704b1f 100644 --- a/src/ft_f_fail.c +++ b/src/f_fail.c @@ -1,7 +1,7 @@ /* ************************************************************************** */ /* */ /* ::: :::::::: */ -/* ft_f_fail.c :+: :+: :+: */ +/* f_fail.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ @@ -16,11 +16,11 @@ #include <unistd.h> #include <errno.h> -#include "ft_d_define.h" -#include "ft_s_struct.h" +#include "d_define.h" +#include "s_struct.h" static void - ft_write_fail(const char concern[], + write_fail(const char concern[], const char msg[], t_msh *msh) { @@ -28,31 +28,23 @@ static void } void - ft_fail_no_options(const char concern[], + f_fail_no_options(const char concern[], t_msh *msh) { - ft_write_fail(concern, FT_FAIL_NO_OPTIONS, msh); + write_fail(concern, FT_FAIL_NO_OPTIONS, msh); } void - ft_fail_identifier(const char concern[], - const char identifier[], - t_msh *msh) + f_fail_identifier(const char concern[], + const char identifier[]) { - ft_dprintf(STDERR_FILENO, "%s: %s: `%s': not a valid identifier\n", - msh->shname, concern, identifier); + ft_dprintf(STDERR_FILENO, "minishell: %s: `%s': not a valid identifier\n", + concern, identifier); } void - ft_fail_too_many_args(const char concern[], + f_fail_too_many_args(const char concern[], t_msh *msh) { - ft_write_fail(concern, FT_FAIL_TOO_MANY_ARGS, msh); -} - -void - ft_fail_alloc(t_msh *msh) -{ - ft_dprintf(STDERR_FILENO, "%s: %s\n", msh->shname, strerror(errno)); - exit(FT_RET_ALLOC); + write_fail(concern, FT_FAIL_TOO_MANY_ARGS, msh); } |