blob: 3f4435d8547dd0b5208e859d19fa740d4d4f67cd (
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
39
40
41
42
43
44
45
46
47
48
49
50
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* repl.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/24 16:07:04 by dkaiser #+# #+# */
/* Updated: 2025/01/25 15:39:36 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#include "../include/minishell.h"
#include "token.h"
static void free_repl(char *input, t_node *ast)
{
free(input);
if (ast)
free_node(ast);
}
void repl(const char *prompt, t_env **env)
{
char *input;
t_token *token_list;
t_node *ast;
while (1)
{
input = readline(prompt);
if (input == NULL)
{
printf("exit\n");
break ;
}
if (input[0] == '\0')
{
free(input);
continue ;
}
add_history(input);
token_list = NULL;
tokenizer(input, &token_list, '\0');
ast = parse(token_list, env);
if (ast)
set_return_code(eval(ast, env), env);
free_repl(input, ast);
}
}
|