|
@@ -69,33 +69,33 @@ inline lub_list_node_t *lub_list_iterator_init(lub_list_t *this)
|
|
|
}
|
|
|
|
|
|
/*--------------------------------------------------------- */
|
|
|
-inline lub_list_node_t *lub_list_iterator_next(lub_list_node_t *this)
|
|
|
+inline lub_list_node_t *lub_list_node__get_prev(lub_list_node_t *this)
|
|
|
{
|
|
|
- return lub_list_node__get_next(this);
|
|
|
+ return this->prev;
|
|
|
}
|
|
|
|
|
|
/*--------------------------------------------------------- */
|
|
|
-inline lub_list_node_t *lub_list_iterator_prev(lub_list_node_t *this)
|
|
|
+inline lub_list_node_t *lub_list_node__get_next(lub_list_node_t *this)
|
|
|
{
|
|
|
- return lub_list_node__get_prev(this);
|
|
|
+ return this->next;
|
|
|
}
|
|
|
|
|
|
/*--------------------------------------------------------- */
|
|
|
-void inline lub_list_node_free(lub_list_node_t *this)
|
|
|
+inline lub_list_node_t *lub_list_iterator_next(lub_list_node_t *this)
|
|
|
{
|
|
|
- free(this);
|
|
|
+ return lub_list_node__get_next(this);
|
|
|
}
|
|
|
|
|
|
/*--------------------------------------------------------- */
|
|
|
-inline lub_list_node_t *lub_list_node__get_prev(lub_list_node_t *this)
|
|
|
+inline lub_list_node_t *lub_list_iterator_prev(lub_list_node_t *this)
|
|
|
{
|
|
|
- return this->prev;
|
|
|
+ return lub_list_node__get_prev(this);
|
|
|
}
|
|
|
|
|
|
/*--------------------------------------------------------- */
|
|
|
-inline lub_list_node_t *lub_list_node__get_next(lub_list_node_t *this)
|
|
|
+void inline lub_list_node_free(lub_list_node_t *this)
|
|
|
{
|
|
|
- return this->next;
|
|
|
+ free(this);
|
|
|
}
|
|
|
|
|
|
/*--------------------------------------------------------- */
|