Remove "Written by Ben Pfaff <blp@gnu.org>" lines everywhere.
[pspp-builds.git] / src / data / data-in.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc.
3
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.
8
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.
13
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
17    02110-1301, USA. */
18
19 #if !data_in_h
20 #define data_in_h 1
21
22 #include <stddef.h>
23 #include <stdbool.h>
24 #include <libpspp/float-format.h>
25 #include <libpspp/integer-format.h>
26 #include <libpspp/str.h>
27 #include "format.h"
28
29 enum integer_format data_in_get_integer_format (void);
30 void data_in_set_integer_format (enum integer_format);
31
32 enum float_format data_in_get_float_format (void);
33 void data_in_set_float_format (enum float_format);
34
35 bool data_in (struct substring input, 
36               enum fmt_type, int implied_decimals, int first_column,
37               union value *output, int width);
38
39 #endif /* data-in.h */