32 lines
1.1 KiB
C
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
2024-04-27 17:39:26 +02:00
/* parsing.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
2024-04-27 17:39:26 +02:00
/* Created: 2024/04/25 12:20:26 by adjoly #+# #+# */
/* Updated: 2024/05/18 20:50:05 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
2024-04-27 17:39:26 +02:00
#ifndef PARSING_H
# define PARSING_H
# include "libft.h"
# define HEREDOC_FD -2
2024-05-09 16:46:13 +02:00
2024-04-27 17:39:26 +02:00
typedef struct s_cmd
{
char *cmd;
char **argv;
int infile;
int outfile;
2024-04-27 17:39:26 +02:00
} t_cmd;
2024-05-09 16:46:13 +02:00
t_cmd *split_cmd(char *cmd_av);
t_list *split_pipe(char *readline);
2024-05-07 11:04:20 +02:00
#endif