Method

GLibStringappend

Declaration

GString*
g_string_append (
  GString* string,
  const gchar* val
)

Description

Adds a string onto the end of a GString, expanding it if necessary.

Parameters

val

Type: const gchar*

The string to append onto the end of string.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.

Return value

Type: GString

string.

The data is owned by the instance.