pub unsafe extern "C" fn lyxp_vars_set(
vars: *mut *mut lyxp_var,
name: *const c_char,
value: *const c_char,
) -> TypeExpand description
@brief Set a new XPath variable to @p vars.
@param[in,out] vars Pointer to [sized array](@ref sizedarrays) of XPath variables. To create a new array, set the @p vars target pointer to NULL. Otherwise variable named @p name with a value @p value will be added to the @p vars or its value will be changed if the variable is already defined. @param[in] name Name of the added/edited variable. @param[in] value Value of the variable. @return LY_ERR value.