21 lines
1006 B
C
21 lines
1006 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* minishell.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2018/11/18 13:12:34 by tmaze #+# #+# */
|
|
/* Updated: 2018/11/22 14:47:05 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef MINISHELL_H
|
|
# define MINISHELL_H
|
|
|
|
# include <unistd.h>
|
|
# include <sys/stat.h>
|
|
# include "libft.h"
|
|
|
|
#endif
|