work on docs
[pspp] / src / data / data-out.h
index 7dff441289c76e6b155719d230f1e776762499e0..f0bc9b24c871e445424461d14bf0739176478866 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 1997-9, 2000, 2006, 2011 Free Software Foundation, Inc.
+   Copyright (C) 1997-9, 2000, 2006, 2011, 2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 #include "libpspp/float-format.h"
 #include "libpspp/integer-format.h"
 
+struct fmt_settings;
 struct fmt_spec;
 struct string;
 union value;
 
-char * data_out (const union value *, const char *encoding, const struct fmt_spec *);
+char *data_out (const union value *input, const char *input_encoding,
+                const struct fmt_spec *, const struct fmt_settings *);
 
-char * data_out_pool (const union value *, const char *encoding, const struct fmt_spec *, struct pool *pool);
+char *data_out_pool (const union value *input, const char *input_encoding,
+                     const struct fmt_spec *, const struct fmt_settings *,
+                     struct pool *pool);
+
+char *data_out_stretchy (const union value *input, const char *input_encoding,
+                         const struct fmt_spec *, const struct fmt_settings *,
+                         struct pool *);
 
 void data_out_recode (const union value *input, const char *input_encoding,
-                      const struct fmt_spec *,
+                      const struct fmt_spec *, const struct fmt_settings *,
                       struct string *output, const char *output_encoding);
 
 #endif /* data-out.h */