42_minishell/redirection/redirection.h

22 lines
1.1 KiB
C
Raw Permalink Normal View History

2023-03-28 09:55:08 -04:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* redirection.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/27 13:44:19 by cchauvet #+# #+# */
/* Updated: 2023/03/27 13:44:20 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
#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