-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignalhandlers.h
23 lines (20 loc) · 1.11 KB
/
signalhandlers.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* signalhandlers.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gbudau <gbudau@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/12/15 21:48:36 by gbudau #+# #+# */
/* Updated: 2021/01/13 00:11:34 by gbudau ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef SIGNALHANDLERS_H
# define SIGNALHANDLERS_H
# include "minishell.h"
# include <signal.h>
void setup_signals_handlers(void);
void ignore_signals(void);
void restore_signals_handlers(void);
int end_of_input(int gnl, char **input);
#endif