X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ftransformations.h;h=59001f1139da18a544775337b9921baa435b7e6c;hb=b5c82cc9aabe7e641011130240ae1b2e84348e23;hp=b2af84e6f22fa8679da0ae19234af2ba22dd9898;hpb=f12fd1512c78016efefe5bfde70a188e625a44c4;p=pspp-builds.git diff --git a/src/data/transformations.h b/src/data/transformations.h index b2af84e6..59001f11 100644 --- a/src/data/transformations.h +++ b/src/data/transformations.h @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. - Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. +/* PSPP - a program for statistical analysis. + Copyright (C) 1997-9, 2000, 2006, 2009 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 TRANSFORMATIONS_H #define TRANSFORMATIONS_H 1 @@ -24,7 +22,7 @@ #include /* trns_proc_func return values. */ -enum trns_result +enum trns_result { TRNS_CONTINUE = -1, /* Continue to next transformation. */ TRNS_DROP_CASE = -2, /* Drop this case. */ @@ -35,7 +33,7 @@ enum trns_result struct ccase; typedef void trns_finalize_func (void *); -typedef int trns_proc_func (void *, struct ccase *, casenumber); +typedef int trns_proc_func (void *, struct ccase **, casenumber); typedef bool trns_free_func (void *); /* Transformation chains. */ @@ -49,8 +47,9 @@ bool trns_chain_is_empty (const struct trns_chain *); void trns_chain_append (struct trns_chain *, trns_finalize_func *, trns_proc_func *, trns_free_func *, void *); size_t trns_chain_next (struct trns_chain *); -enum trns_result trns_chain_execute (struct trns_chain *, enum trns_result, - struct ccase *, const size_t *case_nr); +enum trns_result trns_chain_execute (const struct trns_chain *, + enum trns_result, struct ccase **, + casenumber case_nr); void trns_chain_splice (struct trns_chain *, struct trns_chain *);