Function
GLibbuild_pathv
since: 2.8
Declaration [src]
gchar*
g_build_pathv (
const gchar* separator,
gchar** args
)
Description [src]
Behaves exactly like g_build_path(), but takes the path elements as a string array, instead of variadic arguments.
This function is mainly meant for language bindings.
Available since: 2.8
Parameters
separator
-
Type:
const gchar*
A string used to separator the elements of the path.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. args
-
Type: An array of
filename
NULL
-terminated array of strings containing the path elements.The array must be NULL
-terminated.The data is owned by the caller of the function. Each element is a platform-native string, using the preferred OS encoding on Unix and UTF-8 on Windows..