X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcase.h;h=aa5b9dd0d7c99397ebcb00c7ef908f6ee6a4d719;hb=2da08e801be698df268f35ac6e21cc8a345ba1fb;hp=427e656a1b25eccd569a3c0db25766b383070c5e;hpb=f12fd1512c78016efefe5bfde70a188e625a44c4;p=pspp-builds.git diff --git a/src/data/case.h b/src/data/case.h index 427e656a..aa5b9dd0 100644 --- a/src/data/case.h +++ b/src/data/case.h @@ -1,23 +1,21 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2004, 2007 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 HEADER_CASE -#define HEADER_CASE +#ifndef DATA_CASE_H +#define DATA_CASE_H 1 #include #include @@ -34,7 +32,7 @@ typedef long int casenumber; /* Opaque structure that represents a case. Use accessor functions instead of accessing any members directly. Use case_move() or case_clone() instead of copying. */ -struct ccase +struct ccase { struct case_data *case_data; /* Actual data. */ }; @@ -77,11 +75,11 @@ union value *case_data_rw_idx (struct ccase *, size_t idx); int case_compare (const struct ccase *, const struct ccase *, const struct variable *const *, size_t var_cnt); int case_compare_2dict (const struct ccase *, const struct ccase *, - const struct variable *const *, + const struct variable *const *, const struct variable *const *, size_t var_cnt); const union value *case_data_all (const struct ccase *); union value *case_data_all_rw (struct ccase *); -#endif /* case.h */ +#endif /* data/case.h */