23 lines
461 B
C
23 lines
461 B
C
#ifndef AST_H
|
|
#define AST_H
|
|
|
|
#include "ast_and_or.h"
|
|
#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"
|
|
#include "ast_neg.h"
|
|
#include "ast_pipe.h"
|
|
#include "ast_redir.h"
|
|
#include "ast_void.h"
|
|
#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 */
|