47b2628c2565524b11ddf6d275d55b11de8d18d0
[ppastats.git] / src / list.c
1 /*
2  * Copyright (C) 2011-2012 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                 free(list);
53         }
54
55         new_list[n] = new_item;
56         new_list[n+1] = NULL;
57
58         return new_list;
59 }
60
61 void **list_append_list(void **list1, void **list2)
62 {
63         int n1, n2, n;
64         void **list;
65
66         n1 = list_length(list1);
67         n2 = list_length(list2);
68
69         n = n1 + n2 + 1;
70
71         list = malloc(sizeof(void *)*(n+1));
72
73         memcpy(list, list1, n1*sizeof(void *));
74         memcpy(list+n1, list2, n2*sizeof(void *));
75
76         list[n1+n2] = NULL;
77
78         free(list1);
79
80         return list;
81 }
82