diff options
| author | Dominik Kaiser | 2024-06-28 15:09:32 +0200 |
|---|---|---|
| committer | GitHub | 2024-06-28 15:09:32 +0200 |
| commit | 8103cadfc95fb76539bfccc893a2101ccb89ea90 (patch) | |
| tree | b46379099324f76f2496909b4de3cd71de8b772a /include/minishell.h | |
| parent | 031685832d8267acc2fa46ea9732b8e95eb34463 (diff) | |
| download | minishell-8103cadfc95fb76539bfccc893a2101ccb89ea90.tar.gz minishell-8103cadfc95fb76539bfccc893a2101ccb89ea90.zip | |
Add data structures for tokenizing and parsing
* Add data structures and helper functions for ast
* Add data structures for tokenizing
* Add helper functions for token structures
* Include token.h in minishell.h
* Add new/free functions for nodes/tokens to Makefile
* Add UNREACHABLE macro to debug_tools.h
Diffstat (limited to 'include/minishell.h')
| -rw-r--r-- | include/minishell.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/minishell.h b/include/minishell.h index 8dab21a..a528e4a 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/06/25 15:02:38 by dkaiser ### ########.fr */ +/* Updated: 2024/06/27 18:47:31 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ @@ -14,6 +14,8 @@ # define MINISHELL_H # include "debug_tools.h" +# include "ast.h" +# include "token.h" # include "libft.h" # include <stdio.h> # include <readline/readline.h> |
