strdupv

fun strdupv(strArray: List<String>? = null): List<String>?

Copies an array of strings. The copy is a deep copy; each string is also copied.

If called on a NULL value, g_strdupv() simply returns NULL.

Return

a newly-allocated array of strings. Use func@GLib.strfreev to free it.

Parameters

strArray

an array of strings to copy