X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fvalue-labels.h;h=253990ea5a8beec3f564abc4088aad54b407d59a;hb=cda91450a687e3f520ec4614dcc2d09f6f7c82bb;hp=f0ea0a6d2b09ad81695419ba4204d0506e16b53d;hpb=f5eee9d8478b154444bb0eede53fb892b8130974;p=pspp-builds.git diff --git a/src/data/value-labels.h b/src/data/value-labels.h index f0ea0a6d..253990ea 100644 --- a/src/data/value-labels.h +++ b/src/data/value-labels.h @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. 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 @@ -43,9 +42,9 @@ size_t val_labs_count (const struct val_labs *); bool val_labs_can_set_width (const struct val_labs *, int new_width); void val_labs_set_width (struct val_labs *, int new_width); -int val_labs_add (struct val_labs *, union value, const char *); -int val_labs_replace (struct val_labs *, union value, const char *); -int val_labs_remove (struct val_labs *, union value); +bool val_labs_add (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); struct val_labs_iterator; @@ -58,10 +57,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 */