~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/********************************************************************
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);
}