feat(execution): var assign

This commit is contained in:
william.valenduc 2026-01-29 19:46:22 +00:00
parent 6cdcf3f36b
commit e32715ce13
3 changed files with 10 additions and 1 deletions

View file

@ -8,7 +8,7 @@ int exec_ast_command(struct ast_command *command, struct hash_map *vars);
int exec_ast_if(struct ast_if *if_node, struct hash_map *vars);
int exec_ast_list(struct ast_list *list_node, struct hash_map *vars);
int exec_ast_and_or(struct ast_and_or *ao_node, struct hash_map *vars);
int exec_ast_assignment(struct ast_assignment *assign, struct hash_map *vars);
void unset_all_redir(struct list *redir_list);
#endif // EXECUTION_HELPERS_H