merge conflit (j'aime pas les headers)

This commit is contained in:
2024-02-16 21:26:10 +01:00
4 changed files with 63 additions and 4 deletions

View File

@ -6,18 +6,20 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/04 17:31:38 by tomoron #+# #+# */
/* Updated: 2024/02/16 16:32:33 by tomoron ### ########.fr */
/* Updated: 2024/02/16 21:25:14 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINISHELL_H
# define MINISHELL_H
# include <readline/readline.h>
# include <readline/history.h>
# include <limits.h>
# include <stdio.h>//debug
# include <sys/wait.h>
# include "libft/libft.h"
# include "fcntl.h"
typedef enum e_token_type
{
@ -63,5 +65,6 @@ int is_cmd_char(char c);
void print_parsed_cmd(t_cmd *cmd);//debug
void ft_exit(t_cmd *cmd, t_env *env, int error_code);
char **env_to_char_tab(t_env *env);
void handle_minishellrc(t_env *env);
#endif