more include simplifications
[apps/madmutt.git] / lib-lib / list.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 /*
21  * Copyright notice from original mutt:
22  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
23  */
24
25 #include "lib-lib.h"
26
27 string_list_t *string_list_dup(const string_list_t *p) {
28     string_list_t *res = NULL;
29     string_list_t **last = &res;
30
31     for (; p; p = p->next) {
32         *last = string_item_new();
33         (*last)->data = m_strdup(p->data);
34         last = &(*last)->next;
35     }
36
37     return res;
38 }
39
40 /* FIXME: b0rken API's, replace that at any cost */
41 string_list_t *mutt_add_list_n(string_list_t *head, const void *data, size_t len) {
42     string_list_t *tmp;
43
44     for (tmp = head; tmp && tmp->next; tmp = tmp->next);
45
46     if (tmp) {
47         tmp->next = p_new(string_list_t, 1);
48         tmp = tmp->next;
49     } else {
50         head = tmp = p_new(string_list_t, 1);
51     }
52
53     tmp->data = p_dup((const char *)data, len);
54     tmp->next = NULL;
55     return head;
56 }
57