X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fany-reader.h;h=18707fa8416ad79c5ca71d6967d354d03399d358;hb=6b003fcaaf12c21fda3d44580154b54c54c6cd54;hp=bd3c28812ca6a406c21059b9940a01468027893e;hpb=480a0746507ce73d26f528b56dc3ed80195096e0;p=pspp-builds.git diff --git a/src/data/any-reader.h b/src/data/any-reader.h index bd3c2881..18707fa8 100644 --- a/src/data/any-reader.h +++ b/src/data/any-reader.h @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2006 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 2 of the - License, or (at your option) any later version. + 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. + 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, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #ifndef ANY_READER_H #define ANY_READER_H 1 @@ -23,11 +21,7 @@ struct file_handle; struct dictionary; -struct ccase; -struct any_reader *any_reader_open (struct file_handle *, +struct casereader *any_reader_open (struct file_handle *, struct dictionary **); -bool any_reader_read (struct any_reader *, struct ccase *); -bool any_reader_error (struct any_reader *); -void any_reader_close (struct any_reader *); #endif /* any-reader.h */