Added a dict parameter to data_in and dealt with the consequences.
[pspp-builds.git] / src / data / data-in.h
index 5256bb9132553b46075f4f5526c20f8e936f7e8f..3ebd5933c43b0370e29cfd279cd3b22fcdbb0b4d 100644 (file)
 
 enum fmt_type;
 union value;
+struct dictionary;
 bool data_in (struct substring input, const char *encoding,
               enum fmt_type, int implied_decimals,
               int first_column, int last_column,
+             const struct dictionary *dict,
               union value *output, int width);
 
 #endif /* data/data-in.h */