68e6e84ec54497f95a68818187c11f8a5de84fd1
[pspp-builds.git] / src / data / sys-file-reader.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #ifndef SFM_READ_H
21 #define SFM_READ_H 1
22
23 #include <stdbool.h>
24 #include <stdio.h>
25
26 /* Reading system files. */
27
28 /* System file info that doesn't fit in struct dictionary. */
29 struct sfm_read_info
30   {
31     char creation_date[10];     /* `dd mmm yy' plus a null. */
32     char creation_time[9];      /* `hh:mm:ss' plus a null. */
33     int big_endian;             /* 1=big-endian, 0=little-endian. */
34     int compressed;             /* 0=no, 1=yes. */
35     int case_cnt;               /* -1 if unknown. */
36     char product[61];           /* Product name plus a null. */
37   };
38
39 struct dictionary;
40 struct file_handle;
41 struct ccase;
42 struct sfm_reader *sfm_open_reader (struct file_handle *,
43                                     struct dictionary **,
44                                     struct sfm_read_info *);
45 int sfm_read_case (struct sfm_reader *, struct ccase *);
46 bool sfm_read_error (const struct sfm_reader *);
47 void sfm_close_reader (struct sfm_reader *);
48 bool sfm_detect (FILE *);
49
50 #endif /* sys-file-reader.h */