2026-01-07 20:18:11 +01:00
|
|
|
#ifndef AST_H
|
|
|
|
|
#define AST_H
|
|
|
|
|
|
2026-01-19 18:15:38 +00:00
|
|
|
#include "ast_and_or.h"
|
2026-01-29 11:40:55 +00:00
|
|
|
#include "ast_assignment.h"
|
2026-01-19 18:15:38 +00:00
|
|
|
#include "ast_base.h"
|
|
|
|
|
#include "ast_command.h"
|
|
|
|
|
#include "ast_end.h"
|
|
|
|
|
#include "ast_if.h"
|
|
|
|
|
#include "ast_list.h"
|
2026-01-30 19:48:31 +01:00
|
|
|
#include "ast_loop.h"
|
2026-01-27 19:56:33 +01:00
|
|
|
#include "ast_neg.h"
|
|
|
|
|
#include "ast_pipe.h"
|
2026-01-19 18:15:38 +00:00
|
|
|
#include "ast_redir.h"
|
|
|
|
|
#include "ast_void.h"
|
2026-01-24 15:34:10 +01:00
|
|
|
#include "ast_word.h"
|
2026-01-07 20:18:11 +01:00
|
|
|
|
2026-01-14 20:42:31 +01:00
|
|
|
/**
|
|
|
|
|
* Prints the Graphviz DOT representation of the given AST to stdout.
|
|
|
|
|
*/
|
|
|
|
|
void ast_print_dot(struct ast *ast);
|
|
|
|
|
|
2026-01-07 20:18:11 +01:00
|
|
|
#endif /* ! AST_H */
|