format-parser: Fix inconsistent use of "char *" vs "char[NUMBER]".
[pspp] / src / language / lexer / format-parser.h
index 36497bce656f3ee46dc20e0c040bc8962d7f655f..7601bc46b2ff9fd5c226a5985f0743dde066c423 100644 (file)
 
 #include <stdbool.h>
 
-#include <data/format.h>
-
+#include "data/format.h"
 
 struct lexer;
 
-bool parse_abstract_format_specifier (struct lexer *, char type[FMT_TYPE_LEN_MAX + 1],
-                                      int *width, int *decimals);
+bool parse_abstract_format_specifier (struct lexer *,
+                                      char type[FMT_TYPE_LEN_MAX + 1],
+                                      uint16_t *width, uint8_t *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);