X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdata-out.h;h=f0bc9b24c871e445424461d14bf0739176478866;hb=0e15e68f9ec493ca0eb660ce891579932d070df9;hp=65ac60544fffd6bc065c6b18633c222183d8be5b;hpb=95c2bfafa6dc104e3048b9d8106231aaecb8659b;p=pspp diff --git a/src/data/data-out.h b/src/data/data-out.h index 65ac60544f..f0bc9b24c8 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 *); + const 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); + 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 *, struct pool *); + 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 */