blob: 6c6ca1e009b43296a79107fcf454d4fafe28820e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* signal_handling.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/24 15:08:43 by dkaiser #+# #+# */
/* Updated: 2025/01/20 12:15:32 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
static void handle_sigint(int status);
static void handle_sigquit(int status);
int init_signal_handling(void)
{
if (signal(SIGINT, &handle_sigint) == SIG_ERR)
return (1);
if (signal(SIGQUIT, &handle_sigquit) == SIG_ERR)
return (1);
return (0);
}
static void handle_sigint(__attribute__((unused)) int status)
{
write(1, "\n", 1);
rl_replace_line("", 0);
rl_on_new_line();
rl_redisplay();
}
static void handle_sigquit(__attribute__((unused)) int status)
{
rl_redisplay();
}
|