X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdata-out.h;h=00affb0a3f15f1db99819f92be1ed61dcb620acc;hb=a124375065d0768546f6e7670d9c6d6a0b2b5379;hp=3921773912f6185ece47973f6bb2d1c85bc7efa8;hpb=20751c90d1d6131fede84358ea2581d9ed443ae3;p=pspp-builds.git diff --git a/src/data/data-out.h b/src/data/data-out.h index 39217739..00affb0a 100644 --- a/src/data/data-out.h +++ b/src/data/data-out.h @@ -22,13 +22,15 @@ #include struct fmt_spec; +struct string; union value; char * data_out (const union value *, const char *encoding, const struct fmt_spec *); char * data_out_pool (const union value *, const char *encoding, const struct fmt_spec *, struct pool *pool); -void data_out_legacy (const union value *input, const char *encoding, - const struct fmt_spec *format, char *output); +void data_out_recode (const union value *input, const char *input_encoding, + const struct fmt_spec *, + struct string *output, const char *output_encoding); #endif /* data-out.h */