Method

GLibStringoverwrite_len

since: 2.14

Declaration

GString*
g_string_overwrite_len (
  GString* string,
  gsize pos,
  const gchar* val,
  gssize len
)

Description

Overwrites part of a string, lengthening it if necessary. This function will work with embedded nuls.

Available since: 2.14

Parameters

pos

Type: gsize

The position at which to start overwriting.

val

Type: const gchar*

The string that will overwrite the string starting at pos.

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

Type: gssize

The number of bytes to write from val.

Return value

Type: GString

string.

The data is owned by the instance.