42_minishell/redirection/redirection.h

10 lines
198 B
C
Raw Normal View History

#ifndef REDIRECTION_H
# define REDIRECTION_H
# include "../data/data.h"
2023-03-13 09:23:27 -04:00
# include "../cmd/cmd.h"
2023-03-13 09:23:27 -04:00
int ft_redirection(t_data *data, t_cmd *cmd, char *cmd_str);
2023-03-22 09:59:19 -04:00
int *ft_get_heredoc(void);
2023-03-13 09:23:27 -04:00
#endif