X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fvalue-labels.h;h=ce863a40db82df3aec7eb22653773e8358d12f49;hb=2c7d1b0285e21571b1e50def87e33095f095ce4e;hp=1085fe65f7be60e665e627e54020575bbf88529e;hpb=c708736bdd0fea4b79f3ee4a10e00c3abb95d9e3;p=pspp diff --git a/src/data/value-labels.h b/src/data/value-labels.h index 1085fe65f7..ce863a40db 100644 --- a/src/data/value-labels.h +++ b/src/data/value-labels.h @@ -1,21 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . - 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 VAL_LABS_H #define VAL_LABS_H 1 @@ -28,7 +25,7 @@ struct val_labs; struct variable; -struct val_lab +struct val_lab { union value value; const char *label; @@ -44,7 +41,7 @@ bool val_labs_can_set_width (const struct val_labs *, int new_width); void val_labs_set_width (struct val_labs *, int new_width); bool val_labs_add (struct val_labs *, union value, const char *); -bool val_labs_replace (struct val_labs *, union value, const char *); +void val_labs_replace (struct val_labs *, union value, const char *); bool val_labs_remove (struct val_labs *, union value); char *val_labs_find (const struct val_labs *, union value); @@ -58,10 +55,4 @@ struct val_lab *val_labs_next (const struct val_labs *, struct val_labs_iterator **); void val_labs_done (struct val_labs_iterator **); -/* Return a string representing this value, in the form most - appropriate from a human factors perspective. - (IE: the label if it has one, otherwise the alpha/numeric ) -*/ -const char *value_to_string(const union value *, const struct variable *); - #endif /* value-labels.h */