aboutsummaryrefslogtreecommitdiff
path: root/include/minishell.h
diff options
context:
space:
mode:
authorDominik Kaiser2024-07-09 12:56:09 +0200
committerDominik Kaiser2024-07-09 12:56:09 +0200
commit16ca09f57525cd9a4e7eb82ce70e4c1e0cb85a31 (patch)
treed8f77424f685607ce65bd06e478d8f298f9c0ef9 /include/minishell.h
parent389f7c91f0ebd59c80b457fce63ad383dfd27f85 (diff)
downloadminishell-16ca09f57525cd9a4e7eb82ce70e4c1e0cb85a31.tar.gz
minishell-16ca09f57525cd9a4e7eb82ce70e4c1e0cb85a31.zip
Remove redundant funcs and add parse funcs to header and Makefile
Diffstat (limited to 'include/minishell.h')
-rw-r--r--include/minishell.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/minishell.h b/include/minishell.h
index a528e4a..2411cc5 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/27 18:47:31 by dkaiser ### ########.fr */
+/* Updated: 2024/07/09 11:36:09 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -30,4 +30,8 @@ int init_signal_handling(void);
void repl(const char *prompt);
+
+t_list *parse(t_token *tokens);
+t_node *parse_cmd(t_token *tokens);
+
#endif