42sh/src/utils/ast/ast.h

24 lines
461 B
C
Raw Normal View History

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