Method

GLibQueueinsert_after_link

since: 2.62

Declaration

void
g_queue_insert_after_link (
  GQueue* queue,
  GList* sibling,
  GList* link_
)

Description

Inserts link_ into queue after sibling.

sibling must be part of queue.

Available since: 2.62

This method is not directly available to language bindings.

Parameters

sibling

Type: A list of gpointer

A GList link that must be part of queue, or NULL to push at the head of the queue.

The argument can be NULL.
The data is owned by the caller of the function.
link_

Type: A list of gpointer

A GList link to insert which must not be part of any other list.

The data is owned by the caller of the function.