Function

GLibArrayappend_vals

Declaration

GArray*
g_array_append_vals (
  GArray* array,
  gconstpointer data,
  guint len
)

Description

Adds len elements onto the end of the array.

This function is not directly available to language bindings.

Parameters

array

Type: An array of gpointer

A GArray.

The data is owned by the caller of the function.
data

Type: gconstpointer

A pointer to the elements to append to the end of the array.

The data is owned by the caller of the function.
len

Type: guint

The number of elements to append.

Return value

Type: An array of gpointer

The GArray.

The data is owned by the called function.