/* EINA - EFL data type library * Copyright (C) 2002-2008 Carsten Haitzler, Vincent Torri * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; * if not, see . */ #ifndef EINA_INLIST_H_ #define EINA_INLIST_H_ #include "eina_types.h" #include "eina_iterator.h" #include "eina_accessor.h" /** * @defgroup Inline_List_Group Inline List * @{ */ typedef struct _Eina_Inlist Eina_Inlist; struct _Eina_Inlist { Eina_Inlist *next; Eina_Inlist *prev; Eina_Inlist *last; }; #define EINA_INLIST Eina_Inlist __in_list #define EINA_INLIST_GET(Inlist) &(Inlist->__in_list) EAPI Eina_Inlist * eina_inlist_append(Eina_Inlist *in_list, Eina_Inlist *in_item); EAPI Eina_Inlist * eina_inlist_prepend(Eina_Inlist *in_list, Eina_Inlist *in_item); EAPI Eina_Inlist * eina_inlist_append_relative(Eina_Inlist *in_list, Eina_Inlist *in_item, Eina_Inlist *in_relative); EAPI Eina_Inlist * eina_inlist_prepend_relative(Eina_Inlist *in_list, Eina_Inlist *in_item, Eina_Inlist *in_relative); EAPI Eina_Inlist * eina_inlist_remove(Eina_Inlist *in_list, Eina_Inlist *in_item); EAPI Eina_Inlist * eina_inlist_find(Eina_Inlist *in_list, Eina_Inlist *in_item); EAPI Eina_Inlist * eina_inlist_promote(Eina_Inlist *list, Eina_Inlist *item); EAPI Eina_Inlist * eina_inlist_demote(Eina_Inlist *list, Eina_Inlist *item); EAPI Eina_Iterator *eina_inlist_iterator_new(const Eina_Inlist *in_list); EAPI Eina_Accessor *eina_inlist_accessor_new(const Eina_Inlist *in_list); #define EINA_INLIST_ITER_NEXT(list, l) for (l = (void*)list; l; l = (void*)(l->__in_list.next)) #define EINA_INLIST_ITER_LAST(list, l) for (l = (void*)(list->last); l; l = (void*)(l->__in_list.prev)) /** @} */ #endif /*EINA_INLIST_H_*/