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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
/*
* lists.c -- Functions to implement a double linked list XBoard
*
* Copyright 1995, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free
* Software Foundation, Inc.
*
* Enhancements Copyright 2005 Alessandro Scotti
*
* ------------------------------------------------------------------------
*
* GNU XBoard is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* GNU XBoard is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/. *
*
*------------------------------------------------------------------------
** See the file ChangeLog for a revision history. */
/*
* This file could well be a part of backend.c, but I prefer it this
* way.
*/
#include "config.h"
#include <stdio.h>
#if STDC_HEADERS
# include <stdlib.h>
#endif /* not STDC_HEADERS */
#include "common.h"
#include "lists.h"
/* Check, if List l is empty; returns TRUE, if it is, FALSE
* otherwise.
*/
int
ListEmpty (List *l)
{
return(l->head == (ListNode *) &l->tail);
}
/* Initialize a list. Must be executed before list is used.
*/
void
ListNew (List *l)
{
l->head = (ListNode *) &l->tail;
l->tail = NULL;
l->tailPred = (ListNode *) l;
}
/* Remove node n from the list it is inside.
*/
void
ListRemove (ListNode *n)
{
if (n->succ != NULL) { /* Be safe */
n->pred->succ = n->succ;
n->succ->pred = n->pred;
n->succ = NULL; /* Mark node as no longer being member */
n->pred = NULL; /* of a list. */
}
}
/* Delete node n.
*/
void
ListNodeFree (ListNode *n)
{
if (n) {
ListRemove(n);
free(n);
}
}
/* Create a list node with size s. Returns NULL, if out of memory.
*/
ListNode *
ListNodeCreate (size_t s)
{
ListNode *n;
if ((n = (ListNode*) malloc(s))) {
n->succ = NULL; /* Mark node as not being member of a list. */
n->pred = NULL;
}
return(n);
}
/* Insert node n into the list of node m after m.
*/
void
ListInsert (ListNode *m, ListNode *n)
{
n->succ = m->succ;
n->pred = m;
m->succ = n;
n->succ->pred = n;
}
/* Add node n to the head of list l.
*/
void
ListAddHead (List *l, ListNode *n)
{
ListInsert((ListNode *) &l->head, n);
}
/* Add node n to the tail of list l.
*/
void
ListAddTail (List *l, ListNode *n)
{
ListInsert((ListNode *) l->tailPred, n);
}
/* Return element with number n of list l. (NULL, if n doesn't exist.)
* Counting starts with 0.
*/
ListNode *
ListElem (List *l, int n)
{
ListNode *ln;
for (ln = l->head; ln->succ; ln = ln->succ) {
if (!n--) {
return (ln);
}
}
return(NULL);
}
|