X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdata-out.h;h=65ac60544fffd6bc065c6b18633c222183d8be5b;hb=db7d86c511e47ccbf28263889c8060fd3a97edbc;hp=00affb0a3f15f1db99819f92be1ed61dcb620acc;hpb=a124375065d0768546f6e7670d9c6d6a0b2b5379;p=pspp diff --git a/src/data/data-out.h b/src/data/data-out.h index 00affb0a3f..65ac60544f 100644 --- a/src/data/data-out.h +++ b/src/data/data-out.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2006, 2011 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2006, 2011, 2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,16 +18,21 @@ #define DATA_OUT_H 1 #include -#include -#include +#include "libpspp/float-format.h" +#include "libpspp/integer-format.h" 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 *); -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 *, struct pool *pool); + +char *data_out_stretchy (const union value *input, const char *input_encoding, + const struct fmt_spec *, struct pool *); void data_out_recode (const union value *input, const char *input_encoding, const struct fmt_spec *,