-
Notifications
You must be signed in to change notification settings - Fork 0
/
loop_prompt.c
50 lines (45 loc) · 1.73 KB
/
loop_prompt.c
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
39
40
41
42
43
44
45
46
47
48
49
50
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* prompt.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ngasco <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/14 12:03:16 by ngasco #+# #+# */
/* Updated: 2022/04/11 11:42:40 by adel-cor ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
/* Collecting input from user: fresh input and repeated input of Here docs */
int ft_get_valid_input(t_cdata *t_cdata, char *prompt_text)
{
char *line_read;
line_read = (char *) NULL;
line_read = ft_rl_gets(line_read, prompt_text);
if (!line_read)
{
ft_free_quotes_data(t_cdata);
ft_free_general_data(t_cdata);
write(2, "exit\n", 5);
exit(g_ex_status);
}
t_cdata->t_qdata->raw_input = ft_strdup(line_read);
free(line_read);
if (!*(t_cdata->t_qdata->raw_input))
{
ft_free_quotes_data(t_cdata);
return (0);
}
return (1);
}
/* Collecting user input with readline and adding it to history */
char *ft_rl_gets(char *line_read, char *prompt_text)
{
char *result;
result = readline(prompt_text);
if (line_read != NULL)
result = ft_strjoin(line_read, result);
if (result && *result)
add_history(result);
return (result);
}