23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 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, 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
|