summaryrefslogtreecommitdiff
path: root/src/info2html/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/info2html/parse.h')
-rw-r--r--src/info2html/parse.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/info2html/parse.h b/src/info2html/parse.h
index 10119f00..9f539a3c 100644
--- a/src/info2html/parse.h
+++ b/src/info2html/parse.h
@@ -1,6 +1,7 @@
#ifndef PARSE_H
#define PARSE_H
+#include <zlib.h>
#include "data.h"
#define READ_OK 1
@@ -17,9 +18,10 @@ int parse_note_ref( char *line, char **refname, char **reffile,
char **refnode, char **end_of_link,
int span_lines);
-int read_node_contents( FILE *f, NODE *node );
-int read_node (FILE *f, char *line, NODE *node);
+int read_node_contents( gzFile f, NODE *node );
+int read_node (gzFile f, char *line, NODE *node);
int is_a_hdr_line (char *r);
+extern int num_files_left;
#endif /* PARSE_H */