forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclist.c
78 lines (69 loc) · 1.58 KB
/
clist.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
* Copyright (C) 2013 Freie Universität Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup core_util
* @{
*
* @file
* @brief Circular linked list implementation
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*
* @}
*/
#include <stddef.h>
#include "clist.h"
#include <stdio.h>
/* inserts new_node after node */
void clist_add(clist_node_t **node, clist_node_t *new_node)
{
if (*node != NULL) {
new_node->next = (*node);
new_node->prev = (*node)->prev;
(*node)->prev->next = new_node;
(*node)->prev = new_node;
if ((*node)->prev == *node) {
(*node)->prev = new_node;
}
}
else {
*node = new_node;
new_node->next = new_node;
new_node->prev = new_node;
}
}
/* removes node. */
void clist_remove(clist_node_t **list, clist_node_t *node)
{
if (node->next != node) {
node->prev->next = node->next;
node->next->prev = node->prev;
if (node == *list) {
*list = node->next;
}
}
else {
*list = NULL;
}
}
#if ENABLE_DEBUG
void clist_print(clist_node_t *clist)
{
clist_node_t *start = clist, *node = start;
if (!start) {
return;
}
do {
printf("list entry: %p: prev=%p next=%p\n", clist, clist->prev, clist->next);
clist = clist->next;
if (clist == start) {
break;
}
} while (node != start);
}
#endif