This commit is contained in:
gazhonsepaskwa
2025-02-12 11:39:05 +01:00
parent 2350222238
commit 99a74ea9ac
7 changed files with 25 additions and 14 deletions

View File

@@ -13,7 +13,7 @@
#ifndef MINISHELL_H
# define MINISHELL_H
# define DEBUG 0
# define DEBUG 1
# ifndef DIO_PATH
# define DIO_PATH "ast.xml"

View File

@@ -15,8 +15,8 @@
# include "../minishell.h"
void read_hereinput(char *limiter);
void parse_heredoc(char *limiter);
void create_heredoc(t_node *lst);
void read_hereinput(char *limiter, t_node *lst, t_msh *msh);
void parse_heredoc(char *limiter, t_node *lst, t_msh *msh);
void create_heredoc(t_node *lst, t_msh *msh);
#endif