X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fformat.h;h=edfbc676846ecf151a3daded0701fbc57ff22928;hb=f5c108becd49d78f4898cab11352291f5689d24e;hp=67e46f17b18e50894069733766c9fdca31835e83;hpb=888d0f91d57e0c3c5a4206c30ac71eb87bf44227;p=pspp-builds.git diff --git a/src/data/format.h b/src/data/format.h index 67e46f17..edfbc676 100644 --- a/src/data/format.h +++ b/src/data/format.h @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -24,10 +23,11 @@ #include #include +#include #include /* Format type categories. */ -enum fmt_category +enum fmt_category { /* Numeric formats. */ FMT_CAT_BASIC = 0x001, /* Basic numeric formats. */ @@ -82,7 +82,7 @@ struct fmt_spec fmt_default_for_width (int var_width); bool fmt_check (const struct fmt_spec *, bool for_input); bool fmt_check_input (const struct fmt_spec *); bool fmt_check_output (const struct fmt_spec *); -bool fmt_check_type_compat (const struct fmt_spec *, int var_type); +bool fmt_check_type_compat (const struct fmt_spec *, enum var_type); bool fmt_check_width_compat (const struct fmt_spec *, int var_width); /* Working with formats. */ @@ -115,6 +115,7 @@ bool fmt_from_io (int io, enum fmt_type *); bool fmt_usable_for_input (enum fmt_type) PURE_FUNCTION; const char *fmt_date_template (enum fmt_type) PURE_FUNCTION; +char *fmt_dollar_template (const struct fmt_spec *); /* Maximum length of prefix or suffix string in struct fmt_number_style. */