X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdata-out.h;h=d431447a9dfd9dedff53da0fc587aea80d98dd3e;hb=df1d194af32e35739355981252785e768f21ebb0;hp=65ac60544fffd6bc065c6b18633c222183d8be5b;hpb=95c2bfafa6dc104e3048b9d8106231aaecb8659b;p=pspp diff --git a/src/data/data-out.h b/src/data/data-out.h index 65ac60544f..d431447a9d 100644 --- a/src/data/data-out.h +++ b/src/data/data-out.h @@ -21,21 +21,24 @@ #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 *input, const char *input_encoding, - const struct fmt_spec *); + struct fmt_spec, const struct fmt_settings *); char *data_out_pool (const union value *input, const char *input_encoding, - const struct fmt_spec *, struct pool *pool); + 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 *, struct pool *); + 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 *, + struct fmt_spec, const struct fmt_settings *, struct string *output, const char *output_encoding); #endif /* data-out.h */