File: eina_inline_inlist.x

package info (click to toggle)
efl 1.8.6-2.5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 122,896 kB
  • ctags: 52,058
  • sloc: ansic: 503,707; sh: 12,299; cpp: 11,154; makefile: 1,756; lisp: 433; pascal: 398; python: 233; asm: 209; objc: 101; xml: 35; sed: 16
file content (46 lines) | stat: -rw-r--r-- 1,231 bytes parent folder | download | duplicates (2)
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
/* EINA - EFL data type library
 * Copyright (C) 2013 Jérémy Zurcher
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

#ifndef EINA_INLIST_INLINE_H_
#define EINA_INLIST_INLINE_H_

static inline Eina_Inlist *
eina_inlist_first(const Eina_Inlist *list)
{
   Eina_Inlist *l;

   if (!list) return NULL;

   for (l = (Eina_Inlist*)list; l->prev; l = l->prev);

   return l;
}

static inline Eina_Inlist *
eina_inlist_last(const Eina_Inlist *list)
{
   Eina_Inlist *l;

   if (!list) return NULL;

   for (l = (Eina_Inlist*)list; l->next; l = l->next);

   return l;
}

#endif /* EINA_INLIST_INLINE_H_ */