X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2Fformat-parser.h;h=c152670798b4b6be4f72c09a74b9da3909b7c493;hb=13e7983c183d6448d09cd8ed9644351b676af4d3;hp=d16b2f5bc5fdc771eb382bb3d72a30cb57241aa8;hpb=8acca2de53c1852f38726f70fc6516b34732a79f;p=pspp diff --git a/src/language/lexer/format-parser.h b/src/language/lexer/format-parser.h index d16b2f5bc5..c152670798 100644 --- a/src/language/lexer/format-parser.h +++ b/src/language/lexer/format-parser.h @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 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,9 +23,12 @@ #include -bool parse_abstract_format_specifier (char type[FMT_TYPE_LEN_MAX + 1], + +struct lexer; + +bool parse_abstract_format_specifier (struct lexer *, char type[FMT_TYPE_LEN_MAX + 1], int *width, int *decimals); -bool parse_format_specifier (struct fmt_spec *); -bool parse_format_specifier_name (enum fmt_type *type); +bool parse_format_specifier (struct lexer *, struct fmt_spec *); +bool parse_format_specifier_name (struct lexer *, enum fmt_type *type); #endif /* language/lexer/format-parser.h. */