[][src]Function secp256k1_abc_sys::secp256k1_multiset_add

pub unsafe extern "C" fn secp256k1_multiset_add(
    ctx: *const secp256k1_context,
    multiset: *mut secp256k1_multiset,
    input: *const c_uchar,
    inputLen: usize
) -> c_int

Adds an element to a multiset from single data element

Returns: 1: success 0: invalid parameter Args: ctx: pointer to a context object (cannot be NULL) Out: multiset: the multiset to update In: input: the data to add inputLen: the size of the data to add