🔨」 fix: Merge resolved

This commit is contained in:
2024-05-09 16:46:13 +02:00
parent 9b5ebcdbc5
commit ef07733bcc
16 changed files with 1537 additions and 13 deletions

View File

@ -6,13 +6,15 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/25 12:20:26 by adjoly #+# #+# */
/* Updated: 2024/05/04 13:54:02 by adjoly ### ########.fr */
/* Updated: 2024/05/07 14:07:10 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PARSING_H
# define PARSING_H
#include "libft.h"
typedef struct s_cmd
{
char *cmd;
@ -24,6 +26,7 @@ typedef struct s_parsing
} t_parsing;
t_cmd split_cmd(char *cmd_av);
t_cmd *split_cmd(char *cmd_av);
t_list *split_pipe(char *readline);
#endif