42_minishell/redirection/redirection.h

10 lines
194 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);
int *ft_get_heredoc();
2023-03-13 09:23:27 -04:00
#endif