treewide: Use struct fmt_spec by value instead of pointer in most cases.
[pspp] / src / data / data-out.h
index f0bc9b24c871e445424461d14bf0739176478866..d431447a9dfd9dedff53da0fc587aea80d98dd3e 100644 (file)
@@ -27,18 +27,18 @@ struct string;
 union value;
 
 char *data_out (const union value *input, const char *input_encoding,
-                const struct fmt_spec *, const struct fmt_settings *);
+                struct fmt_spec, const struct fmt_settings *);
 
 char *data_out_pool (const union value *input, const char *input_encoding,
-                     const struct fmt_spec *, const struct fmt_settings *,
+                     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 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_settings *,
+                      struct fmt_spec, const struct fmt_settings *,
                       struct string *output, const char *output_encoding);
 
 #endif /* data-out.h */