Remove stray quotation marks and angle brackets
[pspp] / src / data / ods-reader.h
index 18eb65bc90f279ff0565bcd5c2f3dec447fe3d51..f31304d224e55e4144a51900fe9336da43de366a 100644 (file)
 
 struct casereader;
 struct dictionary;
-struct spreadsheet_read_info;
+
 struct spreadsheet_read_options;
+struct spreadsheet;
 
+const char * ods_get_sheet_name (struct spreadsheet *s, int n);
+char * ods_get_sheet_range (struct spreadsheet *s, int n);
 
-struct spreadsheet *ods_probe (const char *filename);
+struct spreadsheet *ods_probe (const char *filename, bool report_errors);
 
 struct casereader * ods_make_reader (struct spreadsheet *spreadsheet, 
-                                    const struct spreadsheet_read_info *gri,
-                                    struct spreadsheet_read_options *opts);
+                                    const struct spreadsheet_read_options *opts);
+
+void ods_unref (struct spreadsheet *s);
 
 
 #endif