This commit is contained in:
Etienne Rey-bethbeder 2023-02-28 14:54:57 +01:00
parent da75bdbf72
commit 960daa8658

View File

@ -6,13 +6,13 @@
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */ /* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2023/02/24 10:17:59 by erey-bet #+# #+# */ /* Created: 2023/02/24 10:17:59 by erey-bet #+# #+# */
/* Updated: 2023/02/28 14:53:35 by erey-bet ### ########.fr */ /* Updated: 2023/02/28 14:54:48 by erey-bet ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
#include "../minishell.h" #include "../minishell.h"
static int error(int err, char *reason, char *problem, int fd) static int error(int err, char *reason, char *problem)
{ {
ft_putstr_fd("minishell: exit ", 2); ft_putstr_fd("minishell: exit ", 2);
if (problem != NULL) if (problem != NULL)
@ -32,11 +32,11 @@ int ft_exit(char **args, int fd)
return (0); return (0);
err = ft_atoi_check(args[0]); err = ft_atoi_check(args[0]);
if (err == 1) if (err == 1)
return (error(err, "numeric argument required", args[0], fd)); return (error(err, "numeric argument required", args[0]));
if (args[1] != NULL) if (args[1] != NULL)
return (error(-1, "too many arguments", NULL, fd)); return (error(-1, "too many arguments", NULL));
if (err > 0) if (err > 0)
return(error(err, "numeric argument required", args[0], fd)); return(error(err, "numeric argument required", args[0]));
return ((ft_atoi(args[0]) % 256 + 256) % 256); return ((ft_atoi(args[0]) % 256 + 256) % 256);
} }