blob: 5b70d6628ce89125c8b529b16267373ce9da12d5 [file] [log] [blame]
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +00001/* vi: set sw=4 ts=4: */
2/*
3 * linked list helper functions.
4 *
5 * Copyright (C) 2003 Glenn McGrath
6 * Copyright (C) 2005 Vladimir Oleynik
7 * Copyright (C) 2005 Bernhard Fischer
8 *
9 * Licensed under the GPL v2, see the file LICENSE in this tarball.
10 */
Bernhard Reutner-Fischerbee9eb12005-09-29 12:55:10 +000011#include <stdlib.h>
Bernhard Reutner-Fischerbee9eb12005-09-29 12:55:10 +000012#include "libbb.h"
13
14#ifdef L_llist_add_to
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000015/* Add data to the start of the linked list. */
Rob Landleydfba7412006-03-06 20:47:33 +000016llist_t *llist_add_to(llist_t *old_head, char *new_item)
Bernhard Reutner-Fischerbee9eb12005-09-29 12:55:10 +000017{
18 llist_t *new_head;
19
20 new_head = xmalloc(sizeof(llist_t));
21 new_head->data = new_item;
22 new_head->link = old_head;
23
24 return (new_head);
25}
26#endif
27
28#ifdef L_llist_add_to_end
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000029/* Add data to the end of the linked list. */
Rob Landleydfba7412006-03-06 20:47:33 +000030llist_t *llist_add_to_end(llist_t *list_head, char *data)
Bernhard Reutner-Fischerbee9eb12005-09-29 12:55:10 +000031{
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000032 llist_t *new_item;
Bernhard Reutner-Fischerbee9eb12005-09-29 12:55:10 +000033
34 new_item = xmalloc(sizeof(llist_t));
35 new_item->data = data;
36 new_item->link = NULL;
37
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000038 if (list_head == NULL) {
Bernhard Reutner-Fischerbee9eb12005-09-29 12:55:10 +000039 list_head = new_item;
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000040 } else {
41 llist_t *tail = list_head;
42 while (tail->link)
43 tail = tail->link;
44 tail->link = new_item;
Bernhard Reutner-Fischerbee9eb12005-09-29 12:55:10 +000045 }
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000046 return list_head;
Bernhard Reutner-Fischerbee9eb12005-09-29 12:55:10 +000047}
48#endif
49
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000050#ifdef L_llist_free_one
51/* Free the current list element and advance to the next entry in the list.
52 * Returns a pointer to the next element. */
Rob Landleydfba7412006-03-06 20:47:33 +000053llist_t *llist_free_one(llist_t *elm)
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000054{
55 llist_t *next = elm ? elm->link : NULL;
Rob Landleyea9a4712006-03-16 14:40:27 +000056 free(elm);
57 return next;
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000058}
59#endif
60
61#ifdef L_llist_free
62/* Recursively free all elements in the linked list. */
Rob Landleydfba7412006-03-06 20:47:33 +000063void llist_free(llist_t *elm)
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +000064{
65 while ((elm = llist_free_one(elm)));
66}
67#endif