* feat: disable standard output for tests * fuck les fds * patch some complation issues * style: norm * feat: timeout * fix: patc more stuff * fix: patch merge * feat: more tests
20 lines
972 B
C
20 lines
972 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 08_sigpipe.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: elagouch <elagouch@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/01/24 15:38:17 by elagouch #+# #+# */
|
|
/* Updated: 2026/01/25 16:39:33 by elagouch ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <signal.h>
|
|
|
|
int test_sigpipe(void)
|
|
{
|
|
raise(SIGPIPE);
|
|
return (1);
|
|
}
|