diff options
| author | cuhlig | 2024-10-17 14:34:33 +0200 |
|---|---|---|
| committer | GitHub | 2024-10-17 14:34:33 +0200 |
| commit | 92bdbf67adaf09d1c831db3cee9456e9c447063f (patch) | |
| tree | a6478101a4cb0e2fb6b7b0d2a3e1b1bef1c0a4b7 /include/minishell.h | |
| parent | a0016dffa6c5412d7c53b3d9040b837299c50159 (diff) | |
| parent | 85d82207526e7220bd14bc96e5f8079ec781fc75 (diff) | |
| download | minishell-92bdbf67adaf09d1c831db3cee9456e9c447063f.tar.gz minishell-92bdbf67adaf09d1c831db3cee9456e9c447063f.zip | |
Merge branch 'main' into env
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 |
