14 lines
507 B
C
14 lines
507 B
C
|
|
#ifndef EXECUTION_HELPERS_H
|
||
|
|
#define EXECUTION_HELPERS_H
|
||
|
|
|
||
|
|
#include "../utils/ast/ast.h"
|
||
|
|
#include "../utils/hash_map/hash_map.h"
|
||
|
|
|
||
|
|
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_redir(struct ast_redir *redir, struct hash_map *vars);
|
||
|
|
|
||
|
|
#endif // EXECUTION_HELPERS_H
|