diff options
| author | cuhlig | 2024-12-17 15:22:32 +0100 |
|---|---|---|
| committer | GitHub | 2024-12-17 15:22:32 +0100 |
| commit | a93558047c6d04ca4181fa84229d82b09dd7def2 (patch) | |
| tree | a0b67075c625731e1e1d526db46eb5dec81b5616 /include/minishell.h | |
| parent | 8cbba6da72ddd04e358bdb893e700702f92adacd (diff) | |
| parent | ae5512ea0d6d8be833ca3a9b39f93239109f45b4 (diff) | |
| download | minishell-a93558047c6d04ca4181fa84229d82b09dd7def2.tar.gz minishell-a93558047c6d04ca4181fa84229d82b09dd7def2.zip | |
Merge branch 'main' into bugfix-tokenizer
Diffstat (limited to 'include/minishell.h')
| -rw-r--r-- | include/minishell.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/include/minishell.h b/include/minishell.h index c108d93..6997b15 100644 --- a/include/minishell.h +++ b/include/minishell.h @@ -6,7 +6,7 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/22 17:14:49 by dkaiser #+# #+# */ -/* Updated: 2024/08/08 17:10:12 by dkaiser ### ########.fr */ +/* Updated: 2024/08/11 12:22:07 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ @@ -26,9 +26,14 @@ # include <termios.h> # include <unistd.h> -int init(void); -int init_signal_handling(void); +int init(void); +int init_signal_handling(void); -void repl(const char *prompt); +void repl(const char *prompt); +t_list *parse(t_token *tokens); +t_node *parse_cmd(t_token *tokens); +t_redirection *collect_redirs(t_token **tokens); + +void print_ast(t_node *ast); #endif |
