Herb C Reference
Loading...
Searching...
No Matches
ast_pretty_print.h
Go to the documentation of this file.
1// NOTE: This file is generated by the templates/template.rb script and should not
2// be modified manually. See /home/runner/work/herb/herb/templates/src/include/ast_pretty_print.h.erb
3
4#ifndef HERB_AST_PRETTY_PRINT_H
5#define HERB_AST_PRETTY_PRINT_H
6
7#ifdef HERB_EXCLUDE_PRETTYPRINT
8 // Pretty print support excluded
9#else
10
11#include "ast_nodes.h"
12#include "util/hb_buffer.h"
13
15 AST_NODE_T* node,
16 size_t indent,
17 size_t relative_indent,
18 hb_buffer_T* buffer
19);
20
21#endif
22#endif
void ast_pretty_print_node(AST_NODE_T *node, size_t indent, size_t relative_indent, hb_buffer_T *buffer)
Definition ast_pretty_print.c:21
Definition ast_nodes.h:57