diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-20 14:51:45 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-20 14:51:45 +0200 |
commit | c9e4fb6e2ad07e13cf41d6ce6afad30b04011765 (patch) | |
tree | 74d816c107c959315ae52166dac96fe2fe0c2a5e /src/ft_error.c | |
parent | Well well well that wasn't too bad, now remake everything (diff) | |
download | 42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.gz 42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.bz2 42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.xz 42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.zst 42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.zip |
Solid base
Diffstat (limited to 'src/ft_error.c')
-rw-r--r-- | src/ft_error.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/ft_error.c b/src/ft_error.c deleted file mode 100644 index 933a22b..0000000 --- a/src/ft_error.c +++ /dev/null @@ -1,34 +0,0 @@ -/* ************************************************************************** */ -/* LE - / */ -/* / */ -/* ft_error.c .:: .:/ . .:: */ -/* +:+:+ +: +: +:+:+ */ -/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */ -/* #+# #+ #+ #+# */ -/* Created: 2019/10/30 17:21:53 by rbousset #+# ## ## #+# */ -/* Updated: 2019/11/01 18:47:03 by rbousset ### #+. /#+ ###.fr */ -/* / */ -/* / */ -/* ************************************************************************** */ - -#include <libft.h> -#include <minishell.h> - -int -ft_error(const char *com, int err) -{ - ft_putstr("joe-sh: "); - ft_putstr(com); - if (err == 1) - ft_putendl(": too many arguments"); - else if (err == 127) - { - if (!ft_strncmp(com, "./", 2)) - ft_putendl(": no such file or directory"); - else - ft_putendl(": command not found"); - } - else if (err == 255) - ft_putendl(": numeric argument required"); - return (err); -} |