1 /* Generic single linked list to keep various information
2 Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
3 Contributed by Kresten Krab Thorup.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* As a special exception, if you link this library with files compiled with
23 GCC to produce an executable, this does not cause the resulting executable
24 to be covered by the GNU General Public License. This exception does not
25 however invalidate any other reasons why the executable file might be
26 covered by the GNU General Public License. */
28 #ifndef __GNU_OBJC_LIST_H
29 #define __GNU_OBJC_LIST_H
33 struct objc_list
*tail
;
36 /* Return a cons cell produced from (head . tail) */
38 static inline struct objc_list
*
39 list_cons(void* head
, struct objc_list
* tail
)
41 struct objc_list
* cell
;
43 cell
= (struct objc_list
*)objc_malloc(sizeof(struct objc_list
));
49 /* Return the length of a list, list_length(NULL) returns zero */
52 list_length(struct objc_list
* list
)
63 /* Return the Nth element of LIST, where N count from zero. If N
64 larger than the list length, NULL is returned */
67 list_nth(int indx
, struct objc_list
* list
)
79 /* Remove the element at the head by replacing it by its successor */
82 list_remove_head(struct objc_list
** list
)
86 struct objc_list
* tail
= (*list
)->tail
; /* fetch next */
87 *(*list
) = *tail
; /* copy next to list head */
88 objc_free(tail
); /* free next */
90 else /* only one element in list */
98 /* Remove the element with `car' set to ELEMENT */
101 list_remove_elem(struct objc_list
** list
, void* elem
)
104 if ((*list
)->head
== elem
)
105 list_remove_head(list
);
106 list
= &((*list
)->tail
);
110 /* Map FUNCTION over all elements in LIST */
113 list_mapcar(struct objc_list
* list
, void(*function
)(void*))
117 (*function
)(list
->head
);
122 /* Return element that has ELEM as car */
124 static inline struct objc_list
**
125 list_find(struct objc_list
** list
, void* elem
)
129 if ((*list
)->head
== elem
)
131 list
= &((*list
)->tail
);
136 /* Free list (backwards recursive) */
139 list_free(struct objc_list
* list
)
143 list_free(list
->tail
);
147 #endif /* not __GNU_OBJC_LIST_H */