~ubuntu-branches/debian/sid/freehdl/sid

« back to all changes in this revision

Viewing changes to vaul/list.cc

  • Committer: Bazaar Package Importer
  • Author(s): José L. Redrejo Rodríguez
  • Date: 2007-03-17 11:53:16 UTC
  • Revision ID: james.westby@ubuntu.com-20070317115316-4dar2jcct6hz0f6f
Tags: upstream-0.0.4
Import upstream version 0.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* some list hacks
 
2
 
 
3
   Copyright (C) 1994-1997 University of Dortmund
 
4
   Department of Electrical Engineering, AG SIV
 
5
 
 
6
   VAUL is free software; you can redistribute it and/or modify it
 
7
   under the terms of the GNU Library General Public License as
 
8
   published by the Free Software Foundation; either version 2 of the
 
9
   License, or (at your option) any later version.
 
10
 
 
11
   VAUL is distributed in the hope that it will be useful, but WITHOUT
 
12
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
13
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General
 
14
   Public License for more details.
 
15
 
 
16
   You should have received a copy of the GNU Library General Public
 
17
   License along with VAUL; see the file COPYING.LIB.  If not, write
 
18
   to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 
19
   Boston, MA 02111-1307 USA.
 
20
 
 
21
 
 
22
*/
 
23
 
 
24
#include <stddef.h>
 
25
 
 
26
#include <freehdl/vaul-list.h>
 
27
 
 
28
#define memberat(type, ptr, off) (*((type *)(((char *)(ptr))+(off))))
 
29
 
 
30
void *generic_reverse(void *l, size_t noff)
 
31
{
 
32
    void *rl = NULL, *n;
 
33
    while(l) {
 
34
        n = memberat(void *, l, noff);
 
35
        memberat(void *, l, noff) = rl;
 
36
        rl = l;
 
37
        l = n;
 
38
    }
 
39
    return rl;
 
40
}
 
41
 
 
42
void *generic_concat(void *l1, void *l2, size_t noff)
 
43
{
 
44
    if(l2 == NULL)
 
45
        return l1;
 
46
 
 
47
    void **l;
 
48
    for(l = &l1; *l; l = &memberat(void *, *l, noff))
 
49
        ;
 
50
    *l = l2;
 
51
    return l1;
 
52
}