Constructor
JavaScriptCoreValuenew_array_from_strv
Declaration [src]
JSCValue*
jsc_value_new_array_from_strv (
JSCContext* context,
const char* const* strv
)
Description [src]
Create a new JSCValue
referencing an array of strings with the items from strv
. If array
is NULL
or empty a new empty array will be created.
Parameters
context |
JSCContext |
A |
|
The data is owned by the caller of the function. | |
strv |
An array of utf8 |
A |
|
The array must be NULL -terminated. | |
The data is owned by the caller of the function. | |
Each element is a NUL terminated UTF-8 string. |
Return value
Returns: | JSCValue |
A |
|
The caller of the function takes ownership of the data, and is responsible for freeing it. |