Convert to utf8 in data_out function.
[pspp-builds.git] / src / data / data-out.h
index 71cbbac3d5307e1c6bbba422443ea494e930e26e..735679b41257b78d0918ae4c83e29c90eeb62546 100644 (file)
@@ -25,9 +25,9 @@
 struct fmt_spec;
 union value;
 
-char * data_out (const union value *, const struct fmt_spec *);
+char * data_out (const union value *, const char *encoding, const struct fmt_spec *);
 
-char * data_out_pool (const union value *, const struct fmt_spec *, struct pool *pool);
+char * data_out_pool (const union value *, const char *encoding, const struct fmt_spec *, struct pool *pool);
 
 void data_out_legacy (const union value *input, const char *encoding,
                      const struct fmt_spec *format, char *output);