general improvement

This commit is contained in:
gazhonsepaskwa
2025-02-10 14:54:00 +01:00
parent a79227453c
commit 48f4576179
13 changed files with 255 additions and 102 deletions

22
includes/parser/heredoc.h Normal file
View File

@@ -0,0 +1,22 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* heredoc.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nalebrun <nalebrun@student.s19.be> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/10 13:42:28 by nalebrun #+# #+# */
/* Updated: 2025/02/10 13:42:28 by nalebrun ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef HEREDOC_H
# define HEREDOC_H
# include "../minishell.h"
void read_hereinput(char *limiter);
void parse_heredoc(char *limiter);
void create_heredoc(t_node *lst);
#endif