Function
EDataServerutil_copy_string_slist
deprecated: 3.8 since: 3.4
Declaration [src]
GSList*
e_util_copy_string_slist (
GSList* copy_to,
const GSList* strings
)
Description [src]
Copies GSList of strings at the end of copy_to.
Available since: 3.4
Deprecated since: 3.8
Use g_slist_copy_deep() instead, and optionally
g_slist_concat() to concatenate the copied list
to another GSList.
Parameters
copy_to-
Type: A list of
utf8Where to copy; can be
NULL.The argument can be NULL.The called function takes ownership of the data, and is responsible for freeing it. Each element is a NUL terminated UTF-8 string. strings-
Type: A list of
utf8GSListof strings to be copied.The data is owned by the caller of the function. Each element is a NUL terminated UTF-8 string.