1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include <libpspp/alloc.h>
20 #include <libpspp/compiler.h>
21 #include <libpspp/hash.h>
23 #include "group-proc.h"
24 #include <libpspp/str.h>
25 #include <data/variable.h>
26 #include <libpspp/misc.h>
29 /* Return -1 if the id of a is less than b; +1 if greater than and
32 compare_group(const struct group_statistics *a,
33 const struct group_statistics *b,
36 return compare_values(&a->id, &b->id, width);
42 hash_group(const struct group_statistics *g, int width)
46 id_hash = hash_value(&g->id, width);
53 free_group(struct group_statistics *v, void *aux UNUSED)
60 group_proc_get (const struct variable *v)
62 /* This is not ideal, obviously. */
63 struct group_proc *group = var_get_aux (v);
66 group = xmalloc (sizeof (struct group_proc));
67 var_attach_aux (v, group, var_dtor_free);