X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdata-out.h;h=f0bc9b24c871e445424461d14bf0739176478866;hb=b7f672dd5f58c5891d7845871a13f20240eb9edf;hp=b18d067436fbb9b95a3cc5a9043ea20560b26632;hpb=3079a93f224dfc9d0fa8638ccba7a2faac900977;p=pspp diff --git a/src/data/data-out.h b/src/data/data-out.h index b18d067436..f0bc9b24c8 100644 --- a/src/data/data-out.h +++ b/src/data/data-out.h @@ -21,18 +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 *, 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 *, const char *encoding, const struct fmt_spec *, struct 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 */