Function jbl_set_bool

Source
pub unsafe extern "C" fn jbl_set_bool(
    jbl: JBL,
    key: *const c_char,
    v: bool,
) -> iwrc
Expand description

@brief Set bool JBL object property value or add a new entry to end of array JBL object.

In the case when jbl object is array value will be added to end array.

@warning jbl object must writable in other words created with jbl_create_empty_object() or jbl_create_empty_array()

@param jbl JBL container @param key Object key. Does’t makes sense for array objects. @param v Value to set