34 lines
1.3 KiB
C
34 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* minishell.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/03/28 14:41:15 by rparodi #+# #+# */
|
|
/* Updated: 2024/03/29 11:42:54 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MINISHELL_H
|
|
#define MINISHELL_H
|
|
|
|
# include "./type_rust.h"
|
|
# include "../libft/get_next_line.h"
|
|
|
|
# include <unistd.h>
|
|
# include <fcntl.h>
|
|
# include <stdlib.h>
|
|
# include <stdio.h>
|
|
# include <string.h>
|
|
# include <sys/types.h>
|
|
# include <sys/wait.h>
|
|
# include <stdlib.h>
|
|
# include <stdarg.h>
|
|
# include <readline/readline.h>
|
|
# include <readline/history.h>
|
|
|
|
i32 main(void);
|
|
void ft_exit(u8 exit_status);
|
|
|
|
#endif
|