1 /* convert.h - definitions for convert.c */
2 #ifndef CONVERT_H
3 #define CONVERT_H
4 
5 #include "tree_types.h"
6 
7 char *convert_to_texinfo (ELEMENT *e);
8 char *convert_to_text (ELEMENT *e, int *superfluous_arg);
9 char *node_extra_to_texi (NODE_SPEC_EXTRA *nse);
10 
11 #endif
12