Function
GLibbuild_filename_valist
since: 2.56
Declaration [src]
gchar*
g_build_filename_valist (
const gchar* first_element,
va_list* args
)
Description [src]
Creates a filename from a list of elements using the correct separator for the current platform.
Behaves exactly like g_build_filename(), but takes the path elements as a va_list.
This function is mainly meant for implementing other variadic arguments functions.
Available since: 2.56
This function is not directly available to language bindings.
Parameters
first_element
-
Type:
const gchar*
The first element in the path.
The data is owned by the caller of the function. The value is a platform-native string, using the preferred OS encoding on Unix and UTF-8 on Windows. args
-
Type:
va_list*
Va_list of remaining elements in path.
The data is owned by the caller of the function.