]> git.saurik.com Git - bison.git/blob - src/graphviz.h
* data/bison.m4 (b4_percent_code_get): Output %code block comments like
[bison.git] / src / graphviz.h
1 #include <stdbool.h>
2
3 void start_graph (FILE *fout);
4 void output_node (int id, char const *label, FILE *fout);
5 void output_edge (int source, int destination, char const *label,
6 char const *style, FILE *fout);
7 void finish_graph (FILE *fout);