From cc4ede7ead7622c096bc598aad3e10baf93c4350 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 21 Apr 2020 17:26:12 +0200 Subject: Good so far --- src/ft_f_fail.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/ft_f_fail.c (limited to 'src/ft_f_fail.c') diff --git a/src/ft_f_fail.c b/src/ft_f_fail.c new file mode 100644 index 0000000..aed16d0 --- /dev/null +++ b/src/ft_f_fail.c @@ -0,0 +1,36 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_f_fail.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 "ft_d_define.h" + +static void + ft_write_fail(const char concern[], + const char msg[]) +{ + ft_dprintf(STDERR_FILENO, "%s: %s\n", concern, msg); +} + +void + ft_fail_no_options(const char concern[]) +{ + ft_write_fail(concern, FT_FAIL_NO_OPTIONS); +} + +void + ft_fail_alloc(void) +{ + ft_write_fail("minishell", FT_FAIL_ALLOC); + exit(FT_RET_ALLOC); +} -- cgit v1.2.3