24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* signal_handler.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/02 13:20:25 by maiboyer #+# #+# */
|
|
/* Updated: 2024/09/06 15:32:16 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SIGNAL_HANDLER_H
|
|
# define SIGNAL_HANDLER_H
|
|
|
|
# include "me/types.h"
|
|
# include <signal.h>
|
|
# include <stdio.h>
|
|
|
|
typedef t_i32 t_signal;
|
|
|
|
t_error install_signal(void);
|
|
|
|
#endif /* SIGNAL_HANDLER_H */
|