blob: 7a2b61a337354c1bae5909e87bc6094140fc2f3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_error.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/30 17:21:53 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/30 17:21:55 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)
ft_putendl(": command not found");
else if (err == 255)
ft_putendl(": numeric argument required");
return (err);
}
|