Function
GLibSListinsert_before
Declaration [src]
GSList*
g_slist_insert_before (
  GSList* slist,
  GSList* sibling,
  gpointer data
)
Description [src]
Inserts a node before sibling containing data.
This function is not directly available to language bindings.
Parameters
- slist
- 
            Type: A list of gpointerA GSList.The data is owned by the caller of the function. 
- sibling
- 
            Type: A list of gpointerNode to insert databefore.The data is owned by the caller of the function. 
- data
- 
            Type: gpointerData to put in the newly-inserted node. The argument can be NULL.The data is owned by the caller of the function.