pub unsafe extern "C" fn jbl_to_node(
    jbl: JBL,
    node: *mut JBL_NODE,
    clone_strings: bool,
    pool: *mut IWPOOL
) -> iwrc
Expand description

@brief Converts jbl value to JBL_NODE tree. @note node resources will be released when pool destroyed.

@param jbl JSON document in compact binn format. Not zero. @param [out] node Holder of new JBL_NODE value. Not zero. @param clone_strings If true JSON keys and string values will be cloned into given pool otherwise only pointers to strings will be assigned. Use true if you want to be completely safe when given jbl object will be destroyed. @param pool Memory used to allocate new JBL_NODE tree. Not zero.