Move all command implementations into a single 'commands' directory.
[pspp] / src / language / data-io / placement-parser.h
diff --git a/src/language/data-io/placement-parser.h b/src/language/data-io/placement-parser.h
deleted file mode 100644 (file)
index 19711d0..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/* PSPP - a program for statistical analysis.
-   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
-   the Free Software Foundation, either version 3 of the License, or
-   (at your option) any later version.
-
-   This program is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program.  If not, see <http://www.gnu.org/licenses/>. */
-
-#ifndef LANGUAGE_DATA_IO_PLACEMENT_PARSER_H
-#define LANGUAGE_DATA_IO_PLACEMENT_PARSER_H 1
-
-#include <stdbool.h>
-#include <stddef.h>
-#include "data/format.h"
-
-struct pool;
-struct lexer;
-
-bool parse_record_placement (struct lexer *, int *record, int *column);
-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);
-
-#endif /* language/data-io/placement-parser.h */