include format.h only where necessary.
[pspp-builds.git] / src / language / lexer / format-parser.h
index 36497bce656f3ee46dc20e0c040bc8962d7f655f..ae1f545dbf73e5f38cc56dbb6e487a16d3440a30 100644 (file)
 
 #include <stdbool.h>
 
-#include <data/format.h>
-
-
 struct lexer;
 
-bool parse_abstract_format_specifier (struct lexer *, char type[FMT_TYPE_LEN_MAX + 1],
+bool parse_abstract_format_specifier (struct lexer *, char *type,
                                       int *width, int *decimals);
+
+enum fmt_type ;
+struct fmt_spec;
 bool parse_format_specifier (struct lexer *, struct fmt_spec *);
 bool parse_format_specifier_name (struct lexer *, enum fmt_type *type);