X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdata-out.h;h=735679b41257b78d0918ae4c83e29c90eeb62546;hb=c0ba86336af50a4180d970a892fae3c5360fb38b;hp=7972f6a90eafe5050e2c219ecb2e45888ce20981;hpb=9254d30d06a0565c89daccedd93a94c4c6086004;p=pspp-builds.git diff --git a/src/data/data-out.h b/src/data/data-out.h index 7972f6a9..735679b4 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 */