X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdata-in.h;h=3a8d67cc22f66b28eb0bed54126e5a3255449064;hb=4e77f0d303d1ef44ee797941a3bebdcbb37119aa;hp=198128863bebec7e502d3e308600965905d50320;hpb=d0371553a98cd169353bf6d211e375e5ffc3a3bd;p=pspp-builds.git diff --git a/src/data/data-in.h b/src/data/data-in.h index 19812886..3a8d67cc 100644 --- a/src/data/data-in.h +++ b/src/data/data-in.h @@ -14,25 +14,21 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#if !data_in_h -#define data_in_h 1 +#ifndef DATA_DATA_IN_H +#define DATA_DATA_IN_H 1 -#include #include #include #include #include #include -#include "format.h" - -enum integer_format data_in_get_integer_format (void); -void data_in_set_integer_format (enum integer_format); - -enum float_format data_in_get_float_format (void); -void data_in_set_float_format (enum float_format); +#include +enum fmt_type; +union value; bool data_in (struct substring input, enum legacy_encoding, - enum fmt_type, int implied_decimals, int first_column, + enum fmt_type, int implied_decimals, + int first_column, int last_column, union value *output, int width); -#endif /* data-in.h */ +#endif /* data/data-in.h */