Function

GLibArrayset_size

Declaration

GArray*
g_array_set_size (
  GArray* array,
  guint length
)

Description

Sets the size of the array, expanding it if necessary. If the array was created with clear_ set to TRUE, the new elements are set to 0.

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.
length

Type: guint

The new size of the GArray.

Return value

Type: An array of gpointer

The GArray.

The data is owned by the called function.