Method
JsonNodeinit_object
Declaration [src]
JsonNode*
json_node_init_object (
JsonNode* node,
JsonObject* object
)
Description [src]
Initializes node
to JSON_NODE_OBJECT
and sets object
into it.
This function will take a reference on object
.
If the node has already been initialized once, it will be reset to the given type, and any data contained will be cleared.
Available since: | 0.16 |
Parameters
object |
JsonObject |
The JSON object to initialize |
|
The argument can be NULL . | |
The data is owned by the caller of the function. |
Return value
Returns: | JsonNode |
The initialized node. |
|
The data is owned by the instance. |