Updated: normed everything except the big ass file

This commit is contained in:
Maieul BOYER 2024-08-30 19:30:20 +02:00
parent fa5990b00c
commit 0ebc161857
No known key found for this signature in database
6 changed files with 53 additions and 86 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/27 21:13:15 by rparodi #+# #+# */
/* Updated: 2024/08/14 16:38:32 by rparodi ### ########.fr */
/* Updated: 2024/08/30 19:29:43 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -54,4 +54,8 @@ t_ast_node _arith_postfix_to_ast_node(t_ast_arithmetic_postfix *self);
t_ast_node _arith_ternary_to_ast_node(t_ast_arithmetic_ternary *self);
t_ast_node _arith_unary_to_ast_node(t_ast_arithmetic_unary *self);
t_error _unary_get_op(t_ast_arithmetic_operator op, t_arith_op_func *out);
t_error _binary_get_op(t_ast_arithmetic_operator op, t_arith_op_func *out);
t_error _postfix_get_op(t_ast_arithmetic_operator op, t_arith_op_func *out);
#endif

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/08/30 19:12:38 by maiboyer #+# #+# */
/* Updated: 2024/08/30 19:13:26 by maiboyer ### ########.fr */
/* Updated: 2024/08/30 19:25:57 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -16,4 +16,11 @@
# include "exec/_builtins.h"
# include "exec/_builtins_func.h"
struct s_assign_export_state
{
t_state *state;
t_builtin_spawn_info *info;
t_error err;
};
#endif /* BUILTINS_H */