22 lines
1.1 KiB
C
22 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* signal_private.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/28 15:59:42 by cchauvet #+# #+# */
|
|
/* Updated: 2023/03/28 16:04:46 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SIGNAL_PRIVATE_H
|
|
# define SIGNAL_PRIVATE_H
|
|
# include <signal.h>
|
|
# include <readline/readline.h>
|
|
# include <unistd.h>
|
|
# include "../libftx/libftx.h"
|
|
# include "../data/data.h"
|
|
# include "../redirection/redirection.h"
|
|
#endif
|