|
ps2sdk
1.1
A collection of Open Source libraries used for developing applications on Sony's PlayStation 2® (PS2).
|
Go to the source code of this file.
Data Structures | |
| struct | list_t |
Macros | |
| #define | LIST_INIT(name) { &(name), &(name) } |
| #define | list_for_each(dir, pos, head) for (pos = (head)->dir; pos != (head); pos = pos->dir) |
Functions | |
| static int | list_empty (void *l) |
| static void | list_insert (void *l, void *i) |
| static list_t * | list_remove (void *i) |
Simple list support.
Definition in file list.h.
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
Remove the item from the list and return the item.
Definition at line 45 of file list.h.
References list_t::next, and list_t::prev.