Merge commit 'origin/stable'
[pspp-builds.git] / src / data / data-in.h
index 52301c8cefe2a622092154ed5a7a09ef8b3ecd50..3a8d67cc22f66b28eb0bed54126e5a3255449064 100644 (file)
 #define DATA_DATA_IN_H 1
 
 #include <stdbool.h>
-#include <data/format.h>
 #include <libpspp/legacy-encoding.h>
 #include <libpspp/float-format.h>
 #include <libpspp/integer-format.h>
 #include <libpspp/str.h>
+#include <data/format.h>
 
-
+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/data-in.h */