42_minishell/cmd/cmd_private.h

22 lines
1.1 KiB
C
Raw Permalink Normal View History

2023-03-28 09:55:08 -04:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* cmd_private.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/28 15:50:23 by cchauvet #+# #+# */
2023-03-31 10:36:15 -04:00
/* Updated: 2023/03/31 16:33:24 by alouis-j ### ########.fr */
2023-03-28 09:55:08 -04:00
/* */
/* ************************************************************************** */
#ifndef CMD_PRIVATE_H
# define CMD_PRIVATE_H
# include <sys/types.h>
# include <sys/wait.h>
# include "./cmd.h"
# include "../libftx/libftx.h"
# include "../data/data.h"
2023-03-31 10:36:15 -04:00
# include "../utils/utils.h"
#endif