This commit is contained in:
Maix0 2024-07-02 12:30:53 +02:00
parent fecf204227
commit dc3f8cfba9
4 changed files with 71 additions and 19 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/14 17:46:58 by maiboyer #+# #+# */
/* Updated: 2024/06/29 14:44:04 by maiboyer ### ########.fr */
/* Updated: 2024/07/01 21:34:57 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -322,7 +322,7 @@ struct s_ast_file_redirection
{
t_ast_node output;
t_ast_redirection_kind op;
t_str input;
t_ast_node input;
};
/// File Redirection
@ -396,4 +396,13 @@ struct s_ast_regex
t_str pattern;
};
/// Regex
/// ```shell
/// ~pattern
/// ```
struct s_ast_number
{
t_i64 number;
};
#endif /* AST_RAW_STRUCTS_H */