X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdata-out.h;h=735679b41257b78d0918ae4c83e29c90eeb62546;hb=c635f1b8d20a122685889de5c071a6ff71fb46b2;hp=7972f6a90eafe5050e2c219ecb2e45888ce20981;hpb=9254d30d06a0565c89daccedd93a94c4c6086004;p=pspp diff --git a/src/data/data-out.h b/src/data/data-out.h index 7972f6a90e..735679b412 100644 --- a/src/data/data-out.h +++ b/src/data/data-out.h @@ -25,9 +25,11 @@ struct fmt_spec; union value; -void data_out (const union value *, const struct fmt_spec *, char *); +char * data_out (const union value *, const char *encoding, const struct fmt_spec *); -void data_out_legacy (const union value *, const char *encoding, - const struct fmt_spec *, char *); +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); #endif /* data-out.h */