2023-03-28 09:55:08 -04:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* redirection_private.h :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2023/03/27 13:44:31 by cchauvet #+# #+# */
|
|
|
|
/* Updated: 2023/03/28 15:44:38 by cchauvet ### ########.fr */
|
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#ifndef REDIRECTION_PRIVATE_H
|
|
|
|
# define REDIRECTION_PRIVATE_H
|
2023-03-10 06:32:39 -05:00
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <fcntl.h>
|
|
|
|
# include <stddef.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include "../libftx/libftx.h"
|
|
|
|
# include "../data/data.h"
|
|
|
|
# include "../env/env.h"
|
|
|
|
# include "../utils/utils.h"
|
2023-03-13 09:23:27 -04:00
|
|
|
# include "../cmd/cmd.h"
|
2023-03-10 06:32:39 -05:00
|
|
|
|
2023-03-13 09:23:27 -04:00
|
|
|
int ft_file_is_readable(t_data *data, const char *path);
|
|
|
|
int ft_file_is_writable(t_data *data, const char *path);
|
|
|
|
int ft_file_is_appendable(t_data *data, const char *path);
|
2023-03-10 06:32:39 -05:00
|
|
|
int ft_heredoc(t_data *data, char *stop);
|
|
|
|
|
|
|
|
#endif
|