sys-file-writer: Simplify use of put_cmp_number(), put_cmp_string().
[pspp] / src / data / sys-file-reader.h
index be01277235717ef14456a7333d69ef4aab29ce95..037d33a394ce2a8397337aa87373672ba2d31223 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 1997-9, 2000, 2009, 2011, 2012 Free Software Foundation, Inc.
+   Copyright (C) 1997-9, 2000, 2009, 2011, 2012, 2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -39,6 +39,7 @@ struct sfm_read_info
     bool compressed;           /* 0=no, 1=yes. */
     casenumber case_cnt;        /* -1 if unknown. */
     char *product;             /* Product name. */
+    char *product_ext;          /* Extra product info. */
 
     /* Writer's version number in X.Y.Z format.
        The version number is not always present; if not, then
@@ -52,7 +53,7 @@ void sfm_read_info_destroy (struct sfm_read_info *);
 
 struct dictionary;
 struct file_handle;
-struct casereader *sfm_open_reader (struct file_handle *,
+struct casereader *sfm_open_reader (struct file_handle *, const char *encoding,
                                     struct dictionary **,
                                     struct sfm_read_info *);
 bool sfm_detect (FILE *);