X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fdata-io%2Fplacement-parser.h;h=19711d04be37412ca43d945d2b05c7c9622daf1c;hb=885ac3ed70c6cf89e951792de1b0c991b309b5c4;hp=1bd770536539faee1b09115d3e6c1dd228cd7efc;hpb=9ce038d9719d4383a57a0416dc36a905b46d14ec;p=pspp diff --git a/src/language/data-io/placement-parser.h b/src/language/data-io/placement-parser.h index 1bd7705365..19711d04be 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,16 +19,18 @@ #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, - struct fmt_spec **, size_t *format_cnt); +bool parse_var_placements (struct lexer *, struct pool *, size_t n_vars, + enum fmt_use, + struct fmt_spec **, size_t *n_formats); bool execute_placement_format (const struct fmt_spec *, int *record, int *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);