fixed: splitting

This commit is contained in:
Maieul BOYER 2024-10-14 15:20:58 +02:00
parent ca8e484183
commit 135a6429ee
No known key found for this signature in database
14 changed files with 117 additions and 66 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/02 13:22:14 by maiboyer #+# #+# */
/* Updated: 2024/10/13 17:56:04 by maiboyer ### ########.fr */
/* Updated: 2024/10/14 15:03:10 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -16,9 +16,9 @@
t_error install_signal(void)
{
//if (signal(SIGINT, SIG_IGN))
// return (ERROR);
//if (signal(SIGQUIT, SIG_IGN))
// return (ERROR);
if (signal(SIGINT, SIG_IGN))
return (ERROR);
if (signal(SIGQUIT, SIG_IGN))
return (ERROR);
return (NO_ERROR);
}