Remove "Written by Ben Pfaff <blp@gnu.org>" lines everywhere.
[pspp-builds.git] / src / data / vector.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2006  Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful, but
10    WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17    02110-1301, USA. */
18
19 #ifndef DATA_VECTOR_H 
20 #define DATA_VECTOR_H 1
21
22 #include <stddef.h>
23 #include <data/variable.h>
24
25 struct dictionary;
26
27 struct vector *vector_create (const char *name,
28                               struct variable **var, size_t var_cnt);
29 struct vector *vector_clone (const struct vector *old,
30                              const struct dictionary *old_dict,
31                              const struct dictionary *new_dict);
32 void vector_destroy (struct vector *);
33
34 const char *vector_get_name (const struct vector *);
35 enum var_type vector_get_type (const struct vector *);
36 struct variable *vector_get_var (const struct vector *, size_t idx);
37 size_t vector_get_var_cnt (const struct vector *);
38
39 int compare_vector_ptrs_by_name (const void *a_, const void *b_);
40
41 #endif /* data/vector.h */