X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdata-io%2Fplacement-parser.h;h=8f8d68c4ce4f013b61ede2c3ce4e3174f153c895;hb=d6cbbc8d634fa91f050661355139a4e4697e99ab;hp=09292c3b5045993f82c872514a04ecf857f8659d;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp diff --git a/src/language/data-io/placement-parser.h b/src/language/data-io/placement-parser.h index 09292c3b50..8f8d68c4ce 100644 --- a/src/language/data-io/placement-parser.h +++ b/src/language/data-io/placement-parser.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006, 2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,17 +19,20 @@ #include #include +#include "data/format.h" -struct fmt_spec; struct pool; struct lexer; bool parse_record_placement (struct lexer *, int *record, int *column); -bool parse_var_placements (struct lexer *, struct pool *, size_t var_cnt, bool for_input, +bool parse_var_placements (struct lexer *, struct pool *, size_t var_cnt, + enum fmt_use, struct fmt_spec **, size_t *format_cnt); bool execute_placement_format (const struct fmt_spec *, int *record, int *column); -bool parse_column_range (struct lexer *, int *first_column, int *last_column, +bool parse_column (struct lexer *lexer, int base, int *column); +bool parse_column_range (struct lexer *, int base, + int *first_column, int *last_column, bool *range_specified); #endif /* language/data-io/placement-parser.h */