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

19 lines
346 B
C
Raw Normal View History

#ifndef AST_H
#define AST_H
#include "ast_and_or.h"
#include "ast_base.h"
#include "ast_command.h"
#include "ast_end.h"
#include "ast_if.h"
#include "ast_list.h"
#include "ast_redir.h"
#include "ast_void.h"
/**
* Prints the Graphviz DOT representation of the given AST to stdout.
*/
void ast_print_dot(struct ast *ast);
#endif /* ! AST_H */