1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
25 #include <libpspp/float-format.h>
26 #include <libpspp/integer-format.h>
28 /* Reading system files. */
30 /* System file info that doesn't fit in struct dictionary. */
33 char creation_date[10]; /* `dd mmm yy' plus a null. */
34 char creation_time[9]; /* `hh:mm:ss' plus a null. */
35 enum integer_format integer_format;
36 enum float_format float_format;
37 bool compressed; /* 0=no, 1=yes. */
38 int case_cnt; /* -1 if unknown. */
39 char product[61]; /* Product name plus a null. */
45 struct sfm_reader *sfm_open_reader (struct file_handle *,
47 struct sfm_read_info *);
48 int sfm_read_case (struct sfm_reader *, struct ccase *);
49 bool sfm_read_error (const struct sfm_reader *);
50 void sfm_close_reader (struct sfm_reader *);
51 bool sfm_detect (FILE *);
53 #endif /* sys-file-reader.h */