X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fformat.h;h=67e46f17b18e50894069733766c9fdca31835e83;hb=888d0f91d57e0c3c5a4206c30ac71eb87bf44227;hp=919f1c69e7382727b7028c83198b5d42a77e7c11;hpb=65e61cc92b48297625bc71cf31b8a19e301eb6c1;p=pspp-builds.git diff --git a/src/data/format.h b/src/data/format.h index 919f1c69..67e46f17 100644 --- a/src/data/format.h +++ b/src/data/format.h @@ -76,17 +76,19 @@ void fmt_done (void); struct fmt_spec fmt_for_input (enum fmt_type, int w, int d) PURE_FUNCTION; struct fmt_spec fmt_for_output (enum fmt_type, int w, int d) PURE_FUNCTION; struct fmt_spec fmt_for_output_from_input (const struct fmt_spec *); +struct fmt_spec fmt_default_for_width (int var_width); /* Verifying formats. */ 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_width_compat (const struct fmt_spec *, int width); +bool fmt_check_width_compat (const struct fmt_spec *, int var_width); /* Working with formats. */ int fmt_var_width (const struct fmt_spec *); char *fmt_to_string (const struct fmt_spec *, char s[FMT_STRING_LEN_MAX + 1]); +bool fmt_equal (const struct fmt_spec *, const struct fmt_spec *); /* Format types. */ const char *fmt_name (enum fmt_type) PURE_FUNCTION; @@ -142,26 +144,5 @@ int fmt_decimal_char (enum fmt_type); int fmt_grouping_char (enum fmt_type); void fmt_set_decimal (char); - -/* Alignment of data for display. */ -enum alignment - { - ALIGN_LEFT = 0, - ALIGN_RIGHT = 1, - ALIGN_CENTRE = 2, - n_ALIGN - }; - -/* How data is measured. */ -enum measure - { - MEASURE_NOMINAL=1, - MEASURE_ORDINAL=2, - MEASURE_SCALE=3, - n_MEASURES - }; - -bool measure_is_valid(enum measure m); -bool alignment_is_valid(enum alignment a); #endif /* format.h */