20 lines
1004 B
C
20 lines
1004 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ast.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: nalebrun <nalebrun@student.s19.be> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/01/24 08:23:27 by nalebrun #+# #+# */
|
|
/* Updated: 2025/01/24 08:23:27 by nalebrun ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef AST_H
|
|
# define AST_H
|
|
|
|
#include "../../includes/minishell.h"
|
|
#include "../tokenizer/tokenizer.h"
|
|
|
|
#endif
|