summaryrefslogtreecommitdiffstats
path: root/dive.h
diff options
context:
space:
mode:
Diffstat (limited to 'dive.h')
-rw-r--r--dive.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/dive.h b/dive.h
index 9fc390867..53ecdfe00 100644
--- a/dive.h
+++ b/dive.h
@@ -111,4 +111,16 @@ struct dive {
struct sample sample[];
};
+extern int verbose;
+
+struct dive_table {
+ int nr, allocated;
+ struct dive **dives;
+};
+
+extern struct dive_table dive_table;
+
+void parse_xml_init(void);
+void parse_xml_file(const char *filename);
+
#endif /* DIVE_H */