063a7e650ecee3f335fa9078c8035982f54f2ace
[pspp] / src / data / any-reader.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2006, 2010, 2012 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #ifndef ANY_READER_H
18 #define ANY_READER_H 1
19
20 #include <stdbool.h>
21
22 /* Result of type detection. */
23 enum detect_result
24   {
25     ANY_YES,                        /* It is this type. */
26     ANY_NO,                         /* It is not this type. */
27     ANY_ERROR                    /* File couldn't be opened. */
28   };
29
30
31 struct file_handle;
32 struct dictionary;
33 enum detect_result any_reader_may_open (const char *file_name);
34 struct casereader *any_reader_open (struct file_handle *, const char *encoding,
35                                     struct dictionary **);
36
37 #endif /* any-reader.h */