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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
/*-----------------------------------------------------------------------
File : clb_plist.c
Author: Stephan Schulz
Contents
Doubly linked lists of pointers
Copyright 1998, 1999 by the author.
This code is released under the GNU General Public Licence and
the GNU Lesser General Public License.
See the file COPYING in the main E directory for details..
Run "eprover -h" for contact information.
Changes
<1> Wed Jul 22 04:17:45 MET DST 1998
New
-----------------------------------------------------------------------*/
#include "clb_plist.h"
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Forward Declarations */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Internal Functions */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Exported Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: PListAlloc()
//
// Allocate an empty PList.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
PList_p PListAlloc(void)
{
PList_p handle = PListCellAlloc();
handle->pred = handle->succ = handle;
return handle;
}
/*-----------------------------------------------------------------------
//
// Function: PListFree()
//
// Free a PList.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void PListFree(PList_p junk)
{
while(!PListEmpty(junk))
{
PListDelete(junk->succ);
}
PListCellFree(junk);
}
/*-----------------------------------------------------------------------
//
// Function: PListInsert()
//
// Insert a PListCell into a list after where.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void PListInsert(PList_p where, PList_p cell)
{
cell->pred = where;
cell->succ = where->succ;
where->succ->pred = cell;
where->succ = cell;
}
/*-----------------------------------------------------------------------
//
// Function: PListStore()
//
// Store a given value in a PList.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void PListStore(PList_p where, IntOrP val)
{
PList_p handle = PListCellAlloc();
handle->key = val;
PListInsert(where, handle);
}
/*-----------------------------------------------------------------------
//
// Function: PListStoreP()
//
// Store a pointer in a PList
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void PListStoreP(PList_p where, void* val)
{
IntOrP tmp;
tmp.p_val = val;
PListStore(where, tmp);
}
/*-----------------------------------------------------------------------
//
// Function: PListStoreInt()
//
// Store an integer in a PList
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void PListStoreInt(PList_p where, long val)
{
IntOrP tmp;
tmp.i_val = val;
PListStore(where, tmp);
}
/*-----------------------------------------------------------------------
//
// Function: PListExtract()
//
// Extract a PListCell from a list
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
PList_p PListExtract(PList_p element)
{
assert(element->pred);
assert(element->succ);
assert(element->pred!=element);
assert(element->succ!=element);
element->pred->succ = element->succ;
element->succ->pred = element->pred;
element->pred = element->succ = NULL;
return element;
}
/*-----------------------------------------------------------------------
//
// Function: PListDelete()
//
// Delete an entry from a PList.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void PListDelete(PList_p element)
{
PListExtract(element);
PListCellFree(element);
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|