set copyright year to 2015
[ppastats.git] / src / list.c
1 /*
2   Copyright (C) 2011-2015 jeanfi@gmail.com
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
20 #include <stdlib.h>
21 #include <string.h>
22
23 #include <list.h>
24
25 int list_length(void **list)
26 {
27         int n;
28
29         if (!list)
30                 return 0;
31
32         n = 0;
33         while (*list) {
34                 list++;
35                 n++;
36         }
37
38         return n;
39 }
40
41 void **list_add(void **list, void *new_item)
42 {
43         int n;
44         void **new_list;
45
46         n = list_length(list);
47
48         new_list = malloc(sizeof(void *)*(n+2));
49
50         if (n)
51                 memcpy(new_list, list, sizeof(void *)*n);
52
53         new_list[n] = new_item;
54         new_list[n+1] = NULL;
55
56         return new_list;
57 }
58
59 void **list_append_list(void **list1, void **list2)
60 {
61         int n1, n2, n;
62         void **list;
63
64         n1 = list_length(list1);
65         n2 = list_length(list2);
66
67         n = n1 + n2 + 1;
68
69         list = malloc(sizeof(void *)*(n+1));
70
71         memcpy(list, list1, n1*sizeof(void *));
72         memcpy(list+n1, list2, n2*sizeof(void *));
73
74         list[n1+n2] = NULL;
75
76         return list;
77 }
78