mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
23 lines
526 B
Text
23 lines
526 B
Text
/********************************************************************
|
|
Get the first node in the list. */
|
|
UNIV_INLINE
|
|
ib_list_node_t*
|
|
ib_list_get_first(
|
|
/*==============*/
|
|
/* out: first node, or NULL */
|
|
ib_list_t* list) /* in: list */
|
|
{
|
|
return(list->first);
|
|
}
|
|
|
|
/********************************************************************
|
|
Get the last node in the list. */
|
|
UNIV_INLINE
|
|
ib_list_node_t*
|
|
ib_list_get_last(
|
|
/*=============*/
|
|
/* out: last node, or NULL */
|
|
ib_list_t* list) /* in: list */
|
|
{
|
|
return(list->last);
|
|
}
|