Removed my authorship lines.
[pspp] / src / language / lexer / subcommand-list.c
1 /* subclist - lists for PSPP subcommands
2
3 Copyright (C) 2004 Free Software Foundation, Inc.
4
5
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
21
22
23 #include <config.h>
24 #include "subcommand-list.h"
25 #include <stdlib.h>
26 #include "xalloc.h"
27
28 /* I call these objects `lists' but they are in fact simple dynamic arrays */
29
30 #define CHUNKSIZE 16
31
32 /* Create a  list */
33 void
34 subc_list_double_create(subc_list_double *l)
35 {
36   l->data = xnmalloc (CHUNKSIZE, sizeof *l->data);
37   l->sz = CHUNKSIZE;
38   l->n_data = 0;
39 }
40
41 /* Push a value onto the list */
42 void
43 subc_list_double_push(subc_list_double *l, double d)
44 {
45   l->data[l->n_data++] = d;
46
47   if (l->n_data >= l->sz ) 
48     {
49       l->sz += CHUNKSIZE;
50       l->data = xnrealloc (l->data, l->sz, sizeof *l->data);
51     }
52
53 }
54
55 /* Return the number of items in the list */
56 int 
57 subc_list_double_count(const subc_list_double *l)
58 {
59   return l->n_data;
60 }
61
62
63 /* Index into the list (array) */
64 double
65 subc_list_double_at(const subc_list_double *l, int idx)
66 {
67   return l->data[idx];
68 }
69
70 /* Free up the list */
71 void
72 subc_list_double_destroy(subc_list_double *l)
73 {
74   free(l->data);
75 }